用post或者get实现文件下载
package test;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Calendar;
public class filedownload1 {
/**
* @功能 下载临时素材接口
* @param filePath 文件将要保存的目录
* @param method 请求方法,包括POST和GET
* @param url 请求的路径
* @return
*/
public static File saveUrlAs(String url,String filePath,String method){
FileOutputStream fileOut = null;
HttpURLConnection conn = null;
InputStream inputStream = null;
File file=null;
try
{
// 建立链接
URL httpUrl=new URL(url);
conn=(HttpURLConnection) httpUrl.openConnection();
//以Post方式提交表单,默认get方式
conn.setRequestMethod(method);
conn.setDoInput(true);
conn.setDoOutput(true);
// post方式不能使用缓存
conn.setUseCaches(false);
//连接指定的资源
conn.connect();
//获取网络输入流
inputStream=conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(inputStream);
//判断文件的保存路径后面是否以/结尾
if (!filePath.endsWith("/")) {
filePath += "/";
}
String extName = url.substring(url.lastIndexOf("."));
java.util.GregorianCalendar gcalendar = new java.util.GregorianCalendar();
String year = gcalendar.get(Calendar.YEAR)+"";
String month = gcalendar.get(Calendar.MONTH)+1 + "";
String day = gcalendar.get(Calendar.DAY_OF_MONTH)+"";
String newFileName =new java.util.Date().getTime() + "_" + (int)(1000 *Math.random())+ extName;
String dirPath = year + File.separator +month + File.separator + day + File.separator;
//写入到文件(注意文件保存路径的后面一定要加上文件的名称)
//创建不同的文件夹目录
file=new File(filePath +dirPath);
//判断文件夹是否存在
if (!file.exists())
{
//如果文件夹不存在,则创建新的的文件夹
file.mkdirs();
}
fileOut = new FileOutputStream(filePath +dirPath +newFileName);
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
byte[] buf = new byte[4096];
int length = bis.read(buf);
//保存文件
while(length != -1)
{
bos.write(buf, 0, length);
length = bis.read(buf);
}
bos.close();
bis.close();
conn.disconnect();
} catch (Exception e)
{
e.printStackTrace();
System.out.println("抛出异常!!");
}
return file;
}
public static void main(String[] args) {
String fileUrl = "https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png";
// String fileUrl = "file:///D:/test/test1.txt";
/*
* 报错:java.lang.ClassCastException: sun.net.www.protocol.file.FileURLConnection cannot be cast to java.net.HttpURLConnection
*/
String filePath = "d:/test1";
File file = saveUrlAs(fileUrl, filePath ,"GET");
/*
* 若为POST,则报错:java.io.IOException: Server returned HTTP response code: 405 for URL:https://ss0.bdstatic。。。
*/
System.out.println("Run ok!/n<BR>Get URL file " + file);
}
}
注意本方法有较大约束性:
1.此方法只能用GET,不能用POST;
2.只能用http协议下载其他网站的文件,不能用file协议下载服务器本地文件。
原文作者:ispotu
原文地址: https://blog.csdn.net/superit401/article/details/77688276
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/superit401/article/details/77688276
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章