一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|JavaScript|易語言|

服務器之家 - 編程語言 - JAVA教程 - Java下http下載文件客戶端和上傳文件客戶端實例代碼

Java下http下載文件客戶端和上傳文件客戶端實例代碼

2021-02-26 12:54chenyulancn JAVA教程

這篇文章主要介紹了Java下http下載文件客戶端和上傳文件客戶端實例代碼,非常不錯,具有參考借鑒價值,需要的朋友可以參考下

一、下載客戶端代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package javadownload;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
/**
 * @說明 導出虛擬機
 * @author wxt
 * @version 1.0
 * @since
 */
public class GetVM {
  /**
   * 測試
   * @param args
   */
  public static void main(String[] args) {
    String url = "http://192.168.5.102:8845/xx";
    byte[] btImg = getVMFromNetByUrl(url);
    if(null != btImg && btImg.length > 0){
      System.out.println("讀取到:" + btImg.length + " 字節");
      String fileName = "ygserver";
      writeImageToDisk(btImg, fileName);
    }else{
      System.out.println("沒有從該連接獲得內容");
    }
  }
  /**
   * 將vm 寫入到磁盤
   * @param vm 數據流
   * @param fileName 文件保存時的名稱
   */
  public static void writeImageToDisk(byte[] vm, String fileName){
    try {
      File file = new File("./" + fileName);
      FileOutputStream fops = new FileOutputStream(file);
      fops.write(vm);
      fops.flush();
      fops.close();
      System.out.println("下載完成");
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
  /**
   * 根據地址獲得數據的字節流
   * @param strUrl 網絡連接地址
   * @return
   */
  public static byte[] getVMFromNetByUrl(String strUrl){
    try {
      URL url = new URL(strUrl);
      HttpURLConnection conn = (HttpURLConnection)url.openConnection();
      conn.setRequestMethod("GET");
      conn.setConnectTimeout(5 * 1000);
      InputStream inStream = conn.getInputStream();//通過輸入流獲取數據
      byte[] btImg = readInputStream(inStream);//得到的二進制數據
      return btImg;
    } catch (Exception e) {
      e.printStackTrace();
    }
    return null;
  }
  /**
   * 從輸入流中獲取數據
   * @param inStream 輸入流
   * @return
   * @throws Exception
   */
  public static byte[] readInputStream(InputStream inStream) throws Exception{
    ByteArrayOutputStream outStream = new ByteArrayOutputStream();
    byte[] buffer = new byte[1024];
    int len = 0;
    while( (len=inStream.read(buffer)) != -1 ){
      outStream.write(buffer, 0, len);
    }
    inStream.close();
    return outStream.toByteArray();
  }
}

上述代碼只適合下載小文件,如果下載大文件則會出現  Exception in thread "main" java.lang.OutOfMemoryError: Java heap space 錯誤,所以如果下載大文件需要對上述代碼進行改造,代碼如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package javadownload;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
/**
 * @說明 導出虛擬機
 * @author wxt
 * @version 1.0
 * @since
 */
public class GetBigFile {
  /**
   * 測試
   * @param args
   */
  public static void main(String[] args) {
    String url = "http://192.168.5.76:8080/export?uuid=123";
    String fileName="yserver"
    getVMFromNetByUrl(url,fileName);
  }
  /**
   * 根據地址獲下載文件
   * @param strUrl 網絡連接地址
   * @param fileName 下載文件的存儲名稱
   */
  public static void getVMFromNetByUrl(String strUrl,String fileName){
    try {
      URL url = new URL(strUrl);
      HttpURLConnection conn = (HttpURLConnection)url.openConnection();
      conn.setRequestMethod("GET");
      conn.setConnectTimeout(5 * 1000);
      InputStream inStream = conn.getInputStream();//通過輸入流獲取數據
      byte[] buffer = new byte[4096];
      int len = 0;
      File file = new File("./" + fileName);
      FileOutputStream fops = new FileOutputStream(file);
      while( (len=inStream.read(buffer)) != -1 ){
        fops.write(buffer, 0, len);
      }
      fops.flush();
      fops.close();  
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}

二、上傳文件客戶端:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package javadownload;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class FileUpload {
  /**
   * 發送請求
   *
   * @param url
   *      請求地址
   * @param filePath
   *      文件在服務器保存路徑(這里是為了自己測試方便而寫,可以將該參數去掉)
   * @return
   * @throws IOException
   */
  public int send(String url, String filePath) throws IOException {
    File file = new File(filePath);
    if (!file.exists() || !file.isFile()) {
      return -1;
    }
    /**
     * 第一部分
     */
    URL urlObj = new URL(url);
    HttpURLConnection con = (HttpURLConnection) urlObj.openConnection();
    /**
     * 設置關鍵值
     */
    con.setRequestMethod("POST"); // 以Post方式提交表單,默認get方式
    con.setDoInput(true);
    con.setDoOutput(true);
    con.setUseCaches(false); // post方式不能使用緩存
    // 設置請求頭信息
    con.setRequestProperty("Connection", "close");//Keep-Alive
    con.setRequestProperty("Charset", "UTF-8");
    // 設置邊界
    String BOUNDARY = "----------" + System.currentTimeMillis();
    con.setRequestProperty("Content-Type", "multipart/form-data; boundary="
        + BOUNDARY);
    // 請求正文信息
    // 第一部分:
    StringBuilder sb = new StringBuilder();
    sb.append("--"); // ////////必須多兩道線
    sb.append(BOUNDARY);
    sb.append("\r\n");
    sb.append("Content-Disposition: form-data;name=\"file_name\";filename=\""
        + file.getName() + "\"\r\n");
    sb.append("Content-Type:application/octet-stream\r\n\r\n");
    sb.append("Connection:close\r\n\r\n");
    byte[] head = sb.toString().getBytes("utf-8");
    // 獲得輸出流
    OutputStream out = new DataOutputStream(con.getOutputStream());
    out.write(head);
    // 文件正文部分
    DataInputStream in = new DataInputStream(new FileInputStream(file));
    int bytes = 0;
    byte[] bufferOut = new byte[1024];
    while ((bytes = in.read(bufferOut)) != -1) {
      out.write(bufferOut, 0, bytes);
    }
    in.close();
    // 結尾部分
    byte[] foot = ("\r\n--" + BOUNDARY + "--\r\n").getBytes("utf-8");// 定義最后數據分隔線
    out.write(foot);
    out.flush();
    out.close();
    /**
     * 讀取服務器響應,必須讀取,否則提交不成功
     */
    return con.getResponseCode();
    /**
     * 下面的方式讀取也是可以的
     */
    // try {
    // // 定義BufferedReader輸入流來讀取URL的響應
    // BufferedReader reader = new BufferedReader(new InputStreamReader(
    // con.getInputStream()));
    // String line = null;
    // while ((line = reader.readLine()) != null) {
    // System.out.println(line);
    // }
    // } catch (Exception e) {
    // System.out.println("發送POST請求出現異常!" + e);
    // e.printStackTrace();
    // }
  }
  public static void main(String[] args) throws IOException {
    FileUpload up = new FileUpload();
    System.out.println(up.send("http://192.168.5.102:8845/xx",
        "./vif.xml"));
    ;
  }
}

總結

以上所述是小編給大家介紹的Java下http下載文件客戶端和上傳文件客戶端實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對服務器之家網站的支持!

原文鏈接:http://blog.csdn.net/chenyulancn/article/details/45562119

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲免费小视频 | 99精品在线免费观看 | 男女天堂 | 色婷婷天天综合在线 | 好姑娘在线完整版视频 | 被黑人同学彻底征服全文小说阅读 | 秋霞色| 青草精品 | 操操久久 | 小泽玛丽av无码观看 | 国产午夜亚洲精品一区网站 | 国产a一级毛片爽爽影院 | 色婷婷激婷婷深爱五月老司机 | 亚洲精品国产一区二区三区在 | 91真人毛片一级在线播放 | 麻豆网页| 我不卡影院手机在线观看 | 免费在线观看亚洲 | 青青青手机在线视频 | 亚洲国产精品久久久久 | 喜马拉雅听书免费版 | 2022超帅男同gayxxx | 色老板在线视频 | 日本免费看| 日本老熟老太hd | 天天操网| 日本邪恶动态 | 果冻传媒新在线观看免费 | 美女脱了内裤打开腿让人桶网站o | 娇喘嗯嗯 轻点啊视频福利 九九九九在线精品免费视频 | 无码国产成人777爽死在线观看 | 男女羞羞的视频 | 99热99re| 双性人bbww欧美双性 | 99九九精品免费视频观看 | 冰雪奇缘1完整版免费观看 变形金刚第一部 | 久久热这里只有 精品 | 狠狠色96视频 | 亚洲成人网导航 | 欧美性理论片在线观看片免费 | 国产成人激情 |