使用HttpUrlConnection进行post请求上传文件

使用HttpUrlConnection模拟post表单进行文件上传平时很少使用,比较麻烦。

 

原理是: 分析文件上传的数据格式,然后根据格式构造相应的发送给服务器的字符串。

格式如下:这里的httppost123是我自己构造的字符串,可以是其他任何的字符串

----------httppost123 (\r\n)
Content-Disposition: form-data; name="img"; filename="t.txt" (\r\n)
Content-Type: application/octet-stream (\r\n)

(\r\n)

sdfsdfsdfsdfsdf (\r\n)
----------httppost123 (\r\n)
Content-Disposition: form-data; name="text" (\r\n)

(\r\n)

text tttt (\r\n)
----------httppost123-- (\r\n)
(\r\n)

 

上面的(\r\n)表示各个数据必须以(\r\n)结尾。

 

具体Java代码如下:

 

 

Java代码   收藏代码
  1. import java.io.ByteArrayOutputStream;  
  2. import java.io.DataOutputStream;  
  3. import java.io.File;  
  4. import java.io.FileInputStream;  
  5. import java.io.InputStream;  
  6. import java.net.HttpURLConnection;  
  7. import java.net.SocketTimeoutException;  
  8. import java.net.URL;  
  9. import java.net.URLEncoder;  
  10. import java.util.HashMap;  
  11. import java.util.Iterator;  
  12. import java.util.Map;  
  13. import java.util.Set;  
  14.   
  15. import javax.imageio.ImageIO;  
  16. import javax.imageio.ImageReader;  
  17. import javax.imageio.stream.ImageInputStream;  
  18.   
  19. public class HttpPostUtil {  
  20.     URL url;  
  21.     HttpURLConnection conn;  
  22.     String boundary = "--------httppost123";  
  23.     Map<String, String> textParams = new HashMap<String, String>();  
  24.     Map<String, File> fileparams = new HashMap<String, File>();  
  25.     DataOutputStream ds;  
  26.   
  27.     public HttpPostUtil(String url) throws Exception {  
  28.         this.url = new URL(url);  
  29.     }  
  30.     //重新设置要请求的服务器地址,即上传文件的地址。  
  31.     public void setUrl(String url) throws Exception {  
  32.         this.url = new URL(url);  
  33.     }  
  34.     //增加一个普通字符串数据到form表单数据中  
  35.     public void addTextParameter(String name, String value) {  
  36.         textParams.put(name, value);  
  37.     }  
  38.     //增加一个文件到form表单数据中  
  39.     public void addFileParameter(String name, File value) {  
  40.         fileparams.put(name, value);  
  41.     }  
  42.     // 清空所有已添加的form表单数据  
  43.     public void clearAllParameters() {  
  44.         textParams.clear();  
  45.         fileparams.clear();  
  46.     }  
  47.     // 发送数据到服务器,返回一个字节包含服务器的返回结果的数组  
  48.     public byte[] send() throws Exception {  
  49.         initConnection();  
  50.         try {  
  51.             conn.connect();  
  52.         } catch (SocketTimeoutException e) {  
  53.             // something  
  54.             throw new RuntimeException();  
  55.         }  
  56.         ds = new DataOutputStream(conn.getOutputStream());  
  57.         writeFileParams();  
  58.         writeStringParams();  
  59.         paramsEnd();  
  60.         InputStream in = conn.getInputStream();  
  61.         ByteArrayOutputStream out = new ByteArrayOutputStream();  
  62.         int b;  
  63.         while ((b = in.read()) != -1) {  
  64.             out.write(b);  
  65.         }  
  66.         conn.disconnect();  
  67.         return out.toByteArray();  
  68.     }  
  69.     //文件上传的connection的一些必须设置  
  70.     private void initConnection() throws Exception {  
  71.         conn = (HttpURLConnection) this.url.openConnection();  
  72.         conn.setDoOutput(true);  
  73.         conn.setUseCaches(false);  
  74.         conn.setConnectTimeout(10000); //连接超时为10秒  
  75.         conn.setRequestMethod("POST");  
  76.         conn.setRequestProperty("Content-Type",  
  77.                 "multipart/form-data; boundary=" + boundary);  
  78.     }  
  79.     //普通字符串数据  
  80.     private void writeStringParams() throws Exception {  
  81.         Set<String> keySet = textParams.keySet();  
  82.         for (Iterator<String> it = keySet.iterator(); it.hasNext();) {  
  83.             String name = it.next();  
  84.             String value = textParams.get(name);  
  85.             ds.writeBytes("--" + boundary + "\r\n");  
  86.             ds.writeBytes("Content-Disposition: form-data; name=\"" + name  
  87.                     + "\"\r\n");  
  88.             ds.writeBytes("\r\n");  
  89.             ds.writeBytes(encode(value) + "\r\n");  
  90.         }  
  91.     }  
  92.     //文件数据  
  93.     private void writeFileParams() throws Exception {  
  94.         Set<String> keySet = fileparams.keySet();  
  95.         for (Iterator<String> it = keySet.iterator(); it.hasNext();) {  
  96.             String name = it.next();  
  97.             File value = fileparams.get(name);  
  98.             ds.writeBytes("--" + boundary + "\r\n");  
  99.             ds.writeBytes("Content-Disposition: form-data; name=\"" + name  
  100.                     + "\"; filename=\"" + encode(value.getName()) + "\"\r\n");  
  101.             ds.writeBytes("Content-Type: " + getContentType(value) + "\r\n");  
  102.             ds.writeBytes("\r\n");  
  103.             ds.write(getBytes(value));  
  104.             ds.writeBytes("\r\n");  
  105.         }  
  106.     }  
  107.     //获取文件的上传类型,图片格式为image/png,image/jpg等。非图片为application/octet-stream  
  108.     private String getContentType(File f) throws Exception {  
  109.           
  110. //      return "application/octet-stream";  // 此行不再细分是否为图片,全部作为application/octet-stream 类型  
  111.         ImageInputStream imagein = ImageIO.createImageInputStream(f);  
  112.         if (imagein == null) {  
  113.             return "application/octet-stream";  
  114.         }  
  115.         Iterator<ImageReader> it = ImageIO.getImageReaders(imagein);  
  116.         if (!it.hasNext()) {  
  117.             imagein.close();  
  118.             return "application/octet-stream";  
  119.         }  
  120.         imagein.close();  
  121.         return "image/" + it.next().getFormatName().toLowerCase();//将FormatName返回的值转换成小写,默认为大写  
  122.   
  123.     }  
  124.     //把文件转换成字节数组  
  125.     private byte[] getBytes(File f) throws Exception {  
  126.         FileInputStream in = new FileInputStream(f);  
  127.         ByteArrayOutputStream out = new ByteArrayOutputStream();  
  128.         byte[] b = new byte[1024];  
  129.         int n;  
  130.         while ((n = in.read(b)) != -1) {  
  131.             out.write(b, 0, n);  
  132.         }  
  133.         in.close();  
  134.         return out.toByteArray();  
  135.     }  
  136.     //添加结尾数据  
  137.     private void paramsEnd() throws Exception {  
  138.         ds.writeBytes("--" + boundary + "--" + "\r\n");  
  139.         ds.writeBytes("\r\n");  
  140.     }  
  141.     // 对包含中文的字符串进行转码,此为UTF-8。服务器那边要进行一次解码  
  142.     private String encode(String value) throws Exception{  
  143.         return URLEncoder.encode(value, "UTF-8");  
  144.     }  
  145.     public static void main(String[] args) throws Exception {  
  146.         HttpPostUtil u = new HttpPostUtil("http://localhost:3000/up_load");  
  147.         u.addFileParameter("img"new File(  
  148.                 "D:\\素材\\圆月.jpg"));  
  149.         u.addTextParameter("text""中文");  
  150.         byte[] b = u.send();  
  151.         String result = new String(b);  
  152.         System.out.println(result);  
  153.   
  154.     }  
  155.   
  156. }  

 

 

后台使用ruby进行接收

ruby代码如下:

Ruby代码   收藏代码
  1. require "cgi"  
  2. class UpLoadController < ApplicationController  
  3.     protect_from_forgery :except=>:index  
  4.       
  5.     def index  
  6.         img = params[:img]  
  7.         if img.kind_of? String  
  8.             logger.debug "img string : #{img}"  
  9.         else  
  10.             logger.debug "Content-Type:#{img.content_type}"  
  11.             logger.debug "or:#{CGI.unescape(img.original_filename)}"  
  12.         end  
  13.         text = params[:text]  
  14.         logger.debug "text:#{CGI.unescape(text)}"  
  15.         render :text=>"OK"  
  16.     end  
  17. end  

 

日志输入如下:

 Content-Type:image/jpeg
or:圆月.jpg
text:中文

 

如果不把中文转成UTF-8的格式进行传输,则后台显示中文乱码。

同样,如果其他参数包含中文,则也应当先转码。

当然,具体什么编码要和后台接收的编码一致。

你可能感兴趣的:(http)