HttpsURLConnection 업로드 파일 흐름(인 스 턴 스 설명)

3561 단어 파일 업로드
프로젝트 는 외부 인 터 페 이 스 를 연결 하고 그림 파일 을 외부 인터페이스 로 보 내야 합 니 다.다음 코드 는 HttpsURLConnection 이 파일 흐름 을 어떻게 업로드 하 는 지 입 니 다.

/**
   * HttpsURLConnection     
   *
   * @param args
   * @throws Exception
   */
  public static void main(String[] args) throws Exception {
    //    
    java.io.File file = new java.io.File("/Users/jikukalun/Pictures/id1.jpg");
    FileInputStream fileInputStream = new FileInputStream(file);
    //      
    String urlString = "************";

    URL url = new URL(urlString);
    HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
    //      httpUrlConnection  ,     post  ,     
    // http   ,      true,       false;
    con.setDoOutput(true);
    //      httpUrlConnection  ,      true;
    con.setDoInput(true);
    //         "POST",   GET
    con.setRequestMethod("POST");
    // Post         
    con.setUseCaches(false);
    //                java  
    // (      ,         , WEB               java.io.EOFException)
//    con.setRequestProperty("Content-type", "application/x-java-serialized-object");
    OutputStream out = con.getOutputStream();

    //         
    FileInputStream inputStream = new FileInputStream(file);
    byte[] data = new byte[2048];
    int len = 0;
    int sum = 0;
    while ((len = inputStream.read(data)) != -1) {
      //             HttpsURLConnection,    
      out.write(data, 0, len);
      sum = len + sum;
    }

    System.out.println("       :" + sum);

    out.flush();
    inputStream.close();
    out.close();

    int code = con.getResponseCode(); //  post      
    System.out.println("code=" + code + " url=" + url);
    if (code == 200) {
      InputStream inputStream2 = con.getInputStream();
      ByteArrayOutputStream bos = new ByteArrayOutputStream();
      while ((len = inputStream2.read(data)) != -1) {
        bos.write(data, 0, len);
      }
      inputStream2.close();
      String content = bos.toString();
      bos.close();
      System.out.println("result =" + content);
      //    json         json  
      JSONObject json = JSONObject.parseObject(content);
      try {
        System.out.println("name=" + json.getString("name") + ", people=" + json.getString("people") + ", sex=" + json.getString("sex")
            + ", id_number=" + json.getString("id_number") + ", type=" + json.getString("type") + ", address=" + json.getString("address")
            + ", birthday=" + json.getString("birthday"));
      } catch (JSONException e) {
        e.printStackTrace();
      }
    }
    //  HttpsURLConnection  
    con.disconnect();
  }
jar 패키지 참조:

import com.alibaba.fastjson.JSONException;
import com.alibaba.fastjson.JSONObject;
import javax.net.ssl.HttpsURLConnection;
import java.io.*;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
이상 의 HttpsURLConnection 업로드 파일 흐름(인 스 턴 스 설명)은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기