中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

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

2018-07-20    來源:open-open

容器云強(qiáng)勢上線!快速搭建集群,上萬Linux鏡像隨意使用
 
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 {
  
    /**
     * 發(fā)送請求
     * 
     * @param url
     *            請求地址
     * @param filePath
     *            文件在服務(wù)器保存路徑(這里是為了自己測試方便而寫,可以將該參數(shù)去掉)
     * @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();
  
        /**
         * 設(shè)置關(guān)鍵值
         */
        con.setRequestMethod("POST"); // 以Post方式提交表單,默認(rèn)get方式
        con.setDoInput(true);
        con.setDoOutput(true);
        con.setUseCaches(false); // post方式不能使用緩存
  
        // 設(shè)置請求頭信息
        con.setRequestProperty("Connection", "Keep-Alive");
        con.setRequestProperty("Charset", "UTF-8");
  
        // 設(shè)置邊界
        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();
  
        // 結(jié)尾部分
        byte[] foot = ("\\r\\n--" + BOUNDARY + "--\\r\\n").getBytes("utf-8");// 定義最后數(shù)據(jù)分隔線
  
        out.write(foot);
  
        out.flush();
        out.close();
  
        /**
         * 讀取服務(wù)器響應(yīng),必須讀取,否則提交不成功
         */
  
        return con.getResponseCode();
  
        /**
         * 下面的方式讀取也是可以的
         */
  
        // try {
        // // 定義BufferedReader輸入流來讀取URL的響應(yīng)
        // 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("發(fā)送POST請求出現(xiàn)異常!" + 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"));
        ;
    }
}
 

標(biāo)簽: isp 服務(wù)器

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點(diǎn)!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇:Java動態(tài)生成條形碼并將條形碼插入進(jìn)excel中

下一篇:android dbutils的簡化版