HttpsURLConnection 업로드 파일 흐름(인 스 턴 스 설명)
3561 단어 파일 업로드
/**
* 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 업로드 파일 흐름(인 스 턴 스 설명)은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Laravel】 CSV 파일 업로드의 검증이 통과되지 않은 원인화면에서 CSV아일의 업로드를 하는 기능을 만들게 되어, 아무것도 없는 채로 구현했으므로, 조금 실행해 볼까와 동작 확인한 바, 밸리데이션이 통과하지 않는다. 가볍게 빠져서 해결까지의 흐름을 적어 둡니다. 이번에는별...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.