文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么在JAVA中利用HttpURLConnection实现一个文件上传下载功能

2023-05-31 02:13

关注

怎么在JAVA中利用HttpURLConnection实现一个文件上传下载功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

HttpURLConnection文件上传

HttpURLConnection采用模拟浏览器上传的数据格式,上传给服务器

上传代码如下:

package com.util;import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.DataOutputStream;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.OutputStream;import java.io.OutputStreamWriter;import java.net.HttpURLConnection;import java.net.MalformedURLException;import java.net.URL;import java.net.URLConnection;import java.util.Iterator;import java.util.Map;public class HttpConnectionUtil {  @SuppressWarnings("finally") public static String uploadFile(String actionUrl, String[] uploadFilePaths) {  String end = "\r\n";  String twoHyphens = "--";  String boundary = "*****";  DataOutputStream ds = null;  InputStream inputStream = null;  InputStreamReader inputStreamReader = null;  BufferedReader reader = null;  StringBuffer resultBuffer = new StringBuffer();  String tempLine = null;  try {   // 统一资源   URL url = new URL(actionUrl);   // 连接类的父类,抽象类   URLConnection urlConnection = url.openConnection();   // http的连接类   HttpURLConnection httpURLConnection = (HttpURLConnection) urlConnection;   // 设置是否从httpUrlConnection读入,默认情况下是true;   httpURLConnection.setDoInput(true);   // 设置是否向httpUrlConnection输出   httpURLConnection.setDoOutput(true);   // Post 请求不能使用缓存   httpURLConnection.setUseCaches(false);   // 设定请求的方法,默认是GET   httpURLConnection.setRequestMethod("POST");   // 设置字符编码连接参数   httpURLConnection.setRequestProperty("Connection", "Keep-Alive");   // 设置字符编码   httpURLConnection.setRequestProperty("Charset", "UTF-8");   // 设置请求内容类型   httpURLConnection.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);   // 设置DataOutputStream   ds = new DataOutputStream(httpURLConnection.getOutputStream());   for (int i = 0; i < uploadFilePaths.length; i++) {    String uploadFile = uploadFilePaths[i];    String filename = uploadFile.substring(uploadFile.lastIndexOf("//") + 1);    ds.writeBytes(twoHyphens + boundary + end);    ds.writeBytes("Content-Disposition: form-data; " + "name=\"file" + i + "\";filename=\"" + filename      + "\"" + end);    ds.writeBytes(end);    FileInputStream fStream = new FileInputStream(uploadFile);    int bufferSize = 1024;    byte[] buffer = new byte[bufferSize];    int length = -1;    while ((length = fStream.read(buffer)) != -1) {     ds.write(buffer, 0, length);    }    ds.writeBytes(end);        fStream.close();   }   ds.writeBytes(twoHyphens + boundary + twoHyphens + end);      ds.flush();   if (httpURLConnection.getResponseCode() >= 300) {    throw new Exception(      "HTTP Request is not success, Response code is " + httpURLConnection.getResponseCode());   }   if (httpURLConnection.getResponseCode() == HttpURLConnection.HTTP_OK) {    inputStream = httpURLConnection.getInputStream();    inputStreamReader = new InputStreamReader(inputStream);    reader = new BufferedReader(inputStreamReader);    tempLine = null;    resultBuffer = new StringBuffer();    while ((tempLine = reader.readLine()) != null) {     resultBuffer.append(tempLine);     resultBuffer.append("\n");    }   }  } catch (Exception e) {   // TODO Auto-generated catch block   e.printStackTrace();  } finally {   if (ds != null) {    try {     ds.close();    } catch (IOException e) {     // TODO Auto-generated catch block     e.printStackTrace();    }   }   if (reader != null) {    try {     reader.close();    } catch (IOException e) {     // TODO Auto-generated catch block     e.printStackTrace();    }   }   if (inputStreamReader != null) {    try {     inputStreamReader.close();    } catch (IOException e) {     // TODO Auto-generated catch block     e.printStackTrace();    }   }   if (inputStream != null) {    try {     inputStream.close();    } catch (IOException e) {     // TODO Auto-generated catch block     e.printStackTrace();    }   }   return resultBuffer.toString();  } } public static void main(String[] args) {  // 上传文件测试   String str = uploadFile("http://127.0.0.1:8080/image/image.do",new String[] { "/Users//H__D/Desktop//1.png","//Users/H__D/Desktop/2.png" });   System.out.println(str); }}

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯