摘要:
/** * 下载小图 * @param img */ public String download(String file){ DataInputStream is = null; DataOutputStream os = null; String p = ""; HttpURLConnection con = null; try { URL url = new URL(file); con = (HttpURLConnection) url.openConnection(); URL path = Thread.currentThread().getContextCla 阅读全文
posted @ 2011-07-21 12:15
贫民窟里的程序高手
阅读(253)
评论(0)
推荐(0)