android-async-http 는 json 을 body 에 패키지 합 니 다.
final byte[] zipSendDateService = zipSendDate(SelectSendDate().getBytes()); //
content = httpClient.getUploadSendData();//
//http post , post
httpClient.post(context, content, zipSendDateService,
"application/octet-stream",new AsyncHttpResponseHandler() {
@Override//
public void onSuccess(int statusCode,Header[] headers, byte[] responseBody) {
processSendUploadResult(new String(responseBody));}
@Override //
public void onFailure(int statusCode,Header[] headers, byte[] responseBody,
Throwable error) {
}
});
post 방식 으로 문자열 을 body 에 요청 서버 에 기록 합 니 다.
//
public RequestHandle post(Context context, String content,
byte[] zipSendDateService, String contentType,
ResponseHandlerInterface responseHandler) {
//
ByteArrayInputStream bis = new ByteArrayInputStream(zipSendDateService);
Entity
InputStreamEntity entity = new InputStreamEntity(bis,
zipSendDateService.length);
try {
//
content = URLEncoder.encode(content, HTTP.UTF_8);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// json url
String url = getRequestUrl()+"?JSON="
+ content;
//
return httpClient.post(context, url, entity, contentType,
responseHandler);
}
서버 에서 body 의 문자열 을 직접 읽 을 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
빠른 팁: SingleStoreDB의 데이터 API 사용SingleStoreDB는 HTTP 연결을 통해 SQL 문을 실행하는 데 사용할 수 있는 을 제공합니다. 이 짧은 문서에서는 이 데이터 API를 사용하는 방법에 대한 예를 보여줍니다. A는 무료 SingleStore...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.