java
文章平均质量分 65
斯塔克
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
List深度Copy-序列化
public List deepCopy(List src) throws IOException, ClassNotFoundException{ ByteArrayOutputStream byteOut = new ByteArrayOutputStream(); ObjectOutputStream out = new ObjectOut原创 2014-08-01 16:07:40 · 343 阅读 · 0 评论 -
java文件上传
所需Jar包 commons.fileupload-1.2.0.jar、commons.logging-1.1.1.jar、commons.beanutils-1.8.0.jar、commons.collections-3.2.0.jar、commons.io-1.4.0.jar、commons.lang-2.1.0.jar实现效果转载 2014-09-26 16:25:23 · 546 阅读 · 0 评论 -
调用网络接口并读取返数据
public static String getResult(String order) { String result = ""; String URL = "http://xxx.com"; try { URL url = new URL(URL); HttpURLConnection httpURLConnection = (HttpURLConnection) ur原创 2014-12-19 10:10:57 · 956 阅读 · 0 评论
分享