首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

上载图片(二进制数据)

2012-09-10 
下载图片(二进制数据)???????? /** * 下载二进制软件 * @param urlName * @param dir * @return * @throws

下载图片(二进制数据)

???????? /** * 下载二进制软件 * @param urlName * @param dir * @return * @throws IOException */public static String downBin(String urlName, String dir) throws IOException {URL url = new URL(urlName);HttpURLConnection conn = (HttpURLConnection) url.openConnection();conn.connect();HttpURLConnection.setFollowRedirects(true);byte[] buf = new byte[128];BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());// 保存文件int size = 0;FileOutputStream fos = new FileOutputStream(dir);while ((size = bis.read(buf)) != -1) {fos.write(buf);}fos.flush();fos.close();return null;}
?

热点排行