Android分别使用HTTP协议和TCP协议实现上传文件


Android上传文件有两种方式,第一种是基于Http协议的HttpURLConnection,第二种是基于TCP协议的Socket。 这两种方式的区别是使用HttpURLConnection上传时内部有缓存机制,如果上传较大文件会导致内存溢出。如果用TCP协议Socket方式上传就会解决这种弊端。

HTTP协议HttpURLConnection

1. 通过URL封装路径打开一个HttpURLConnection

2.设置请求方式以及头字段:Content-Type、Content-Length、Host

3.拼接数据发送

示例:

  1. private static final String BOUNDARY = "---------------------------7db1c523809b2";//数据分割线  
  2.   
  3. public boolean uploadHttpURLConnection(String username, String password, String path) throws Exception {  
  4.     //找到sdcard上的文件  
  5.     File file = new File(Environment.getExternalStorageDirectory(), path);  
  6.                  //仿Http协议发送数据方式进行拼接  
  7.     StringBuilder sb = new StringBuilder();  
  8.     sb.append("--" + BOUNDARY + "\r\n");  
  9.     sb.append("Content-Disposition: form-data; name=\"username\"" + "\r\n");  
  10.     sb.append("\r\n");  
  11.     sb.append(username + "\r\n");  
  12.   
  13.     sb.append("--" + BOUNDARY + "\r\n");  
  14.     sb.append("Content-Disposition: form-data; name=\"password\"" + "\r\n");  
  15.     sb.append("\r\n");  
  16.     sb.append(password + "\r\n");  
  17.   
  18.     sb.append("--" + BOUNDARY + "\r\n");  
  19.     sb.append("Content-Disposition: form-data; name=\"file\"; filename=\"" + path + "\"" + "\r\n");  
  20.     sb.append("Content-Type: image/pjpeg" + "\r\n");  
  21.     sb.append("\r\n");  
  22.   
  23.     byte[] before = sb.toString().getBytes("UTF-8");  
  24.     byte[] after = ("\r\n--" + BOUNDARY + "--\r\n").getBytes("UTF-8");  
  25.   
  26.     URL url = new URL("http://192.168.1.16:8080/14_Web/servlet/LoginServlet");  
  27.     HttpURLConnection conn = (HttpURLConnection) url.openConnection();  
  28.     conn.setRequestMethod("POST");  
  29.     conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + BOUNDARY);  
  30.     conn.setRequestProperty("Content-Length", String.valueOf(before.length + file.length() + after.length));  
  31.     conn.setRequestProperty("HOST", "192.168.1.16:8080");  
  32.     conn.setDoOutput(true);   
  33.   
  34.     OutputStream out = conn.getOutputStream();  
  35.     InputStream in = new FileInputStream(file);  
  36.       
  37.     out.write(before);  
  38.   
  39.     byte[] buf = new byte[1024];  
  40.     int len;  
  41.     while ((len = in.read(buf)) != -1)  
  42.         out.write(buf, 0, len);  
  43.   
  44.     out.write(after);  
  45.   
  46.     in.close();  
  47.     out.close();  
  48.     return conn.getResponseCode() == 200;  

TCP协议Socket

1.我们可以使用Socket发送TCP请求,将上传数据分段发送

示例:

  1. public boolean uploadBySocket(String username, String password, String path) throws Exception {  
  2.     // 根据path找到SDCard中的文件  
  3.     File file = new File(Environment.getExternalStorageDirectory(), path);  
  4.     // 组装表单字段和文件之前的数据  
  5.     StringBuilder sb = new StringBuilder();  
  6.   
  7.     sb.append("--" + BOUNDARY + "\r\n");  
  8.     sb.append("Content-Disposition: form-data; name=\"username\"" + "\r\n");  
  9.     sb.append("\r\n");  
  10.     sb.append(username + "\r\n");  
  11.   
  12.     sb.append("--" + BOUNDARY + "\r\n");  
  13.     sb.append("Content-Disposition: form-data; name=\"password\"" + "\r\n");  
  14.     sb.append("\r\n");  
  15.     sb.append(password + "\r\n");  
  16.   
  17.     sb.append("--" + BOUNDARY + "\r\n");  
  18.     sb.append("Content-Disposition: form-data; name=\"file\"; filename=\"" + path + "\"" + "\r\n");  
  19.     sb.append("Content-Type: image/pjpeg" + "\r\n");  
  20.     sb.append("\r\n");  
  21.   
  22.     // 文件之前的数据  
  23.     byte[] before = sb.toString().getBytes("UTF-8");  
  24.     // 文件之后的数据  
  25.     byte[] after = ("\r\n--" + BOUNDARY + "--\r\n").getBytes("UTF-8");  
  26.   
  27.     URL url = new URL("http://192.168.1.199:8080/14_Web/servlet/LoginServlet");  
  28.   
  29.     // 由于HttpURLConnection中会缓存数据, 上传较大文件时会导致内存溢出, 所以我们使用Socket传输  
  30.     Socket socket = new Socket(url.getHost(), url.getPort());  
  31.     OutputStream out = socket.getOutputStream();  
  32.     PrintStream ps = new PrintStream(out, true, "UTF-8");  
  33.   
  34.     // 写出请求头  
  35.     ps.println("POST /14_Web/servlet/LoginServlet HTTP/1.1");  
  36.     ps.println("Content-Type: multipart/form-data; boundary=" + BOUNDARY);  
  37.     ps.println("Content-Length: " + String.valueOf(before.length + file.length() + after.length));  
  38.     ps.println("Host: 192.168.1.199:8080");  
  39.       
  40.     InputStream in = new FileInputStream(file);  
  41.   
  42.     // 写出数据  
  43.     out.write(before);  
  44.   
  45.     byte[] buf = new byte[1024];  
  46.     int len;  
  47.     while ((len = in.read(buf)) != -1)  
  48.         out.write(buf, 0, len);  
  49.   
  50.     out.write(after);  
  51.   
  52.     in.close();  
  53.     out.close();  
  54.   
  55.     return true;  
  56. }  
  • 1
  • 2
  • 下一页

相关内容