摘要: 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) 编辑