下载服务器上的文件—通过url
【下载服务器上的文件—通过url】String fileHome = this.getServlet().getServletContext().getRealPath("/");
InputStream is;
FileOutputStream fileOut = new FileOutputStream(fileHome + "upload/receive/" + md.getId()+1 + ".zip");
URL url = new URL(md.getFromIp().replace("receive/onlineExport.do", "upload/receive/" + md.getId() + ".zip"));
URLConnection c = url.openConnection();
// *
c.connect();
is = c.getInputStream();
int data;
while ((data = https://www.it610.com/article/is.read()) != -1) {
fileOut.write(data);
}
is.close();
fileOut.close();
推荐阅读
- Y房东的后半生14
- 陇上秋二|陇上秋二 罗敷媚
- MediaRecorder前后摄像头同时录像
- live|live to inspire 一个普通上班族的流水账0723
- 上班后阅读开始变成一件奢侈的事
- 危险也是机会
- “精神病患者”的角度问题
- 亲子日记第186篇,2018、7、26、星期四、晴
- 海院(实干是海院风景(上))
- 带有Hilt的Android上的依赖注入