上一页 1 2 3 4 5 6 7 ··· 49 下一页
摘要: (步骤)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 阅读(3165) 评论(0) 推荐(0) 编辑
摘要: 在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 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 1,在项目 上 选择 “视图”- “属性页” 2,选择 “配置属性” - “清单工具” - “输入输出”,将 “嵌入清单”的值设置为 “否” 阅读全文
posted @ 2018-01-02 16:03 wonkju 阅读(222) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/oldinaction/p/5167481.html 概述: Tomcat默认是 ISO编码,不支持中文。尝试过自己写 Filter,在web.xml中将自己写的FIlter放在最前面(否则不会执行Filter中的doFilter方法),甚至也在tom 阅读全文
posted @ 2017-12-30 15:24 wonkju 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 在eclipse中,需要通过 阅读全文
posted @ 2017-12-30 09:09 wonkju 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 一、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 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的问文件。 (vc++)需要引入 #include "stdafx.h"(每一个.cpp文件都需要引入,即使a.cpp中已经引入,b.cpp文件includea.cpp时也需要), 且需要在include “xx 阅读全文
posted @ 2017-12-27 17:18 wonkju 阅读(436) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 49 下一页