HttpClient 의 용법 소결
5080 단어 기술 을 개발 하 다
HttpClient 사용 절차:
Get 요청 을 예 로 들 면:
package Test;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import javax.swing.text.Document;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.xml.sax.InputSource;
@SuppressWarnings("deprecation")
public class MsgThread extends Thread {
@Override
public void run() {
String url="http://121.40.137.165/OpenPlatform/OpenApi?action=sendOnce"
+"&"+"ac="
+"&"+"authkey="
+"&"+"cgid="
+"&"+"csid="
+"&"+"c="+java.net.URLEncoder.encode(" ")
+"&"+"m=";
try {
@SuppressWarnings({ "resource", "deprecation" })
HttpClient httpclient = new DefaultHttpClient();// HttpClient
HttpGet httpget = new HttpGet(url); // get HttpGet
HttpResponse response = httpclient.execute(httpget); // HttpGet
int a = response.getStatusLine().getStatusCode();
byte[] msgBody = null;
if (a == 200) {
HttpEntity entity = response.getEntity(); // 。 xml , 。
InputStream is = entity.getContent();
;//
byte[] temp = new byte[1024];
int n = 0;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
while ((n = is.read(temp)) != -1) {
bos.write(temp, 0, n);
}
msgBody = bos.toByteArray();
bos.close();
is.close();
String returnXml = new String(msgBody, "UTF-8").trim();
System.out.println(" xml :"+returnXml);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
경량급 HTTP 서버 NginxNginx 가 제공 하 는 프로필 디 버 깅 기능 은 매우 유용 하여 프로필 에 존재 하 는 문제점 을 빠르게 찾 을 수 있 습 니 다.다음 명령 을 실행 하여 설정 파일 의 정확성 을 검사 합 니 다: (2) Ng...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.