摘要: While text files contain only textual data, binary files may contain both textual and custom binary data. https://fileinfo.com/help/binary_vs_text_fil 阅读全文
posted @ 2018-01-26 11:01 水木仕林 阅读(191) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.io.FileUtils; java.net.URL l_url = new java.net.URL(""); File file=new File(""); FileUtils.copyURLToFile(l_url, file); 阅读全文
posted @ 2017-09-08 16:47 水木仕林 阅读(2657) 评论(1) 推荐(0) 编辑
摘要: import org.apache.axis.client.Call; import org.apache.axis.client.Service; import org.apache.axis.encoding.XMLType; import javax.xml.namespace.QName; import javax.xml.rpc.ParameterMode; import javax.... 阅读全文
posted @ 2017-09-08 16:44 水木仕林 阅读(968) 评论(0) 推荐(0) 编辑
摘要: //访问准备 URL url = new URL("http:***"); //post参数 Map params = new LinkedHashMap(); params.put("geomInfo", ""); params.put("f", "json"); //开始访问 ... 阅读全文
posted @ 2017-09-08 16:40 水木仕林 阅读(22403) 评论(0) 推荐(1) 编辑
摘要: Tomcat运行原理 http://blog.csdn.net/pzxwhc/article/details/47129675 Tomcat执行流程 http://www.importnew.com/17124.html Tomcat server.xml配置示例 1、JavaWeb应用的概念 在S 阅读全文
posted @ 2017-03-21 13:56 水木仕林 阅读(178) 评论(0) 推荐(0) 编辑
摘要: ArcGIS安装问题和Git知识 1、ArcGIS10.1安装问题 安装过程中工具箱类打开为空白,没有任何工具。解决办法:由于IE8不支持工具显示,安装IE9后显示正常。 2、RSA非对称加密算法 Git的.ssh文件利用了RSA非对称加密算法,是利用了数论里的欧拉定理来完成公钥和私钥生成过程。两个 阅读全文
posted @ 2017-03-21 13:55 水木仕林 阅读(159) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/shan9liang/article/details/8995023 1、RPC RPC(Remote Procedure Call Protocol) RPC使用C/S方式,采用http协议,发送请求到服务器,等待服务器返回结果。这个请求包括一个参数集和一 阅读全文
posted @ 2017-03-21 13:54 水木仕林 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 转载于:http://jiangzhengjun.iteye.com/blog/458869 JavaScript小数在做四则运算时,精度会丢失,这会在项目中引起诸多不便,先请看下面脚本: 按正常计算的话,除第一行外(因为其本身就不能除尽),其他都应该要得到精确的结果,从弹出的结果我们却发现不是我们 阅读全文
posted @ 2017-01-13 09:17 水木仕林 阅读(545) 评论(0) 推荐(0) 编辑