java客戶端模擬表單上傳文件

efbb 9年前發布 | 2K 次閱讀 Java

 
package client;

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", "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\\";filename=\\""
            + file.getName() + "\\"\\r\\n");
    sb.append("Content-Type:application/octet-stream\\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://localhost:8080/fileupload/upload",
            "c:\\\\girls.gif"));
    ;
}

}

</pre>

 本文由用戶 efbb 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!