会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wonkju
自己选择的路,走不完就滚蛋
博客园
首页
新随笔
管理
上一页
1
2
3
4
5
6
7
···
49
下一页
2018年1月14日
arcgis license manager 10.2服务无法启动
摘要: (步骤)1. 用cmd切换到 license manager 安装目录,如 C:\Program Files (x86)\ArcGIS\License10.2\bin,输入: Lmgrd -z -c service.txt 结果运行为:(提示Failed to open the TCP port n
阅读全文
posted @ 2018-01-14 20:19 wonkju
阅读(3502)
评论(0)
推荐(0)
2018年1月2日
fatal error LNK1169: 找到一个或多个多重定义的符号
摘要: 在vs中,使用c时,由编译-链接,cpp之间是自动的,如: 1,头文件 x.h: 2,实现 impl.cpp: 3,在main(即user_extern.cpp)中(使用实现 impl.cpp不需要include impl.cpp),只要include 包含 int f();的 头文件(即 x.h)
阅读全文
posted @ 2018-01-02 18:09 wonkju
阅读(1139)
评论(0)
推荐(0)
visual studio 2010 c++ fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或
摘要: 解决方案: 1,在项目 上 选择 “视图”- “属性页” 2,选择 “配置属性” - “清单工具” - “输入输出”,将 “嵌入清单”的值设置为 “否”
阅读全文
posted @ 2018-01-02 16:03 wonkju
阅读(250)
评论(0)
推荐(0)
2017年12月30日
struts中指定编码(使用Filter后仍然乱码)
摘要: https://www.cnblogs.com/oldinaction/p/5167481.html 概述: Tomcat默认是 ISO编码,不支持中文。尝试过自己写 Filter,在web.xml中将自己写的FIlter放在最前面(否则不会执行Filter中的doFilter方法),甚至也在tom
阅读全文
posted @ 2017-12-30 15:24 wonkju
阅读(175)
评论(0)
推荐(0)
The superclass "javax.servlet.http.HttpServlet" was not found
摘要: 在eclipse中,需要通过
阅读全文
posted @ 2017-12-30 09:09 wonkju
阅读(131)
评论(0)
推荐(0)
2017年12月29日
java编码-多重(乱码)
摘要: 一、1,UTF编码 - 2,ISO解码 - 3,UTF编码 - 4,ISO解码 String ISO = "ISO-8859-1"; String UTF = "UTF-8"; String GBK = "GBK"; String string = "你好"; byte[] bytes = stri
阅读全文
posted @ 2017-12-29 14:03 wonkju
阅读(364)
评论(0)
推荐(0)
java编码-多重(正常)
摘要: String ISO = "ISO-8859-1"; String UTF = "UTF-8"; String GBK = "GBK"; String string = "你好"; byte[] bytes = string.getBytes(UTF); //1,UTF编码 for(byte b :
阅读全文
posted @ 2017-12-29 13:43 wonkju
阅读(298)
评论(0)
推荐(0)
java 编码
摘要: String ISO = "ISO-8859-1"; String UTF = "UTF-8"; String GBK = "GBK"; String string = "很开心分享经验"; /*ISO*/ byte[] bytes = string.getBytes(ISO); System.ou
阅读全文
posted @ 2017-12-29 12:37 wonkju
阅读(231)
评论(0)
推荐(0)
2017年12月27日
在vc++上简单搭建环境(包括文件引用)
摘要: 1,triplet_head.h 文件 1 #define TRUE 1 2 #define FALSE 0 3 #define OK 1 4 #define ERROR 0 5 #define OVER_FLOW -2 6 7 typedef int Status; 8 typedef int E
阅读全文
posted @ 2017-12-27 18:04 wonkju
阅读(599)
评论(0)
推荐(0)
fatal error C1010: unexpected end of file while looking for precompiled header directive
摘要: 致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的问文件。 (vc++)需要引入 #include "stdafx.h"(每一个.cpp文件都需要引入,即使a.cpp中已经引入,b.cpp文件includea.cpp时也需要), 且需要在include “xx
阅读全文
posted @ 2017-12-27 17:18 wonkju
阅读(458)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
49
下一页