濮阳杆衣贸易有限公司

主頁 > 知識庫 > HttpClient Post 二進(jìn)制/字節(jié)流/byte[]實(shí)例代碼

HttpClient Post 二進(jìn)制/字節(jié)流/byte[]實(shí)例代碼

熱門標(biāo)簽:自繪地圖標(biāo)注數(shù)據(jù) 外呼系統(tǒng)使用方法 電銷機(jī)器人免培訓(xùn) 潤滑油銷售電銷機(jī)器人 給地圖標(biāo)注得傭金 海外圖書館地圖標(biāo)注點(diǎn) 南通通訊外呼系統(tǒng)產(chǎn)品介紹 電話機(jī)器人需要使用網(wǎng)絡(luò)嗎 如何看懂地圖標(biāo)注點(diǎn)

 HttpClient Post 二進(jìn)制/字節(jié)流/byte[]實(shí)例代碼

HttpClient 3.x

public class HttpHelper { 
  String m_url; 
  HttpClient m_HttpClient; 
 
  public HttpHelper(String url) { 
    m_url = url; 
    m_HttpClient = new HttpClient(); 
  } 
 
  public byte[] post(byte[] bytes, String contentType) throws IOException { 
    PostMethod method = new PostMethod(m_url); 
 
    if ((contentType != null)  (contentType.length() > 0)) 
      method.setRequestHeader("Content-type" , contentType); 
    method.setRequestEntity(new ByteArrayRequestEntity(bytes)); 
    int HttpCode = m_HttpClient.executeMethod(method); 
    if (HttpCode != HttpStatus.SC_OK) 
      throw new IOException("Invalid HttpStatus: " + HttpCode); 
    InputStream respStream = method.getResponseBodyAsStream(); 
    int respBodySize = respStream.available(); 
    if (respBodySize = 0) 
      throw new IOException("Invalid respBodySize: " + respBodySize); 
    byte[] respBuffer = new byte[respBodySize]; 
    if (respStream.read(respBuffer) != respBodySize) 
      throw new IOException("Read respBody Error"); 
    return respBuffer; 
  } 
 
  public String postXml(String str) throws IOException { 
    byte[] reqBuffer = str.getBytes(Charset.forName("UTF-8")); 
    byte[] respBuffer = post(reqBuffer, "application/xml; charset=UTF-8"); 
    String resp = new String(respBuffer, Charset.forName("UTF-8")); 
    return resp; 
  } 
} 

HttpClient 4.x

public class HttpHelper { 
  CloseableHttpClient m_HttpClient; 
 
  public HttpHelper() { 
    m_HttpClient = HttpClients.createDefault(); 
  } 
 
  // send bytes and recv bytes 
  public byte[] post(String url, byte[] bytes, String contentType) throws IOException { 
    HttpPost httpPost = new HttpPost(url); 
    httpPost.setEntity(new ByteArrayEntity(bytes)); 
    if (contentType != null) 
      httpPost.setHeader("Content-type", contentType); 
    CloseableHttpResponse httpResponse = m_HttpClient.execute(httpPost); 
    try { 
      HttpEntity entityResponse = httpResponse.getEntity(); 
      int contentLength = (int) entityResponse.getContentLength(); 
      if (contentLength = 0) 
        throw new IOException("No response"); 
      byte[] respBuffer = new byte[contentLength]; 
      if (entityResponse.getContent().read(respBuffer) != respBuffer.length) 
        throw new IOException("Read response buffer error"); 
      return respBuffer; 
    } finally { 
      httpResponse.close(); 
    } 
  } 
 
  public byte[] post(String url, byte[] bytes) throws IOException { 
    return post(url, bytes, null); 
  } 
 
  public String postXml(String url, String str) throws IOException { 
    byte[] reqBuffer = str.getBytes(Charset.forName("UTF-8")); 
    byte[] respBuffer = post(url, reqBuffer, "application/xml; charset=UTF-8"); 
    String resp = new String(respBuffer, Charset.forName("UTF-8")); 
    return resp; 
  } 
} 

 感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • Java使用HttpClient實(shí)現(xiàn)Post請求實(shí)例
  • httpclient模擬post請求json封裝表單數(shù)據(jù)的實(shí)現(xiàn)方法
  • JAVA利用HttpClient進(jìn)行POST請求(HTTPS)實(shí)例
  • Java利用HttpClient模擬POST表單操作應(yīng)用及注意事項(xiàng)
  • java使用httpclient模擬post請求和get請求示例
  • java使用httpclient發(fā)送post請求示例
  • Android HttpClient GET或者POST請求基本使用方法

標(biāo)簽:黃石 內(nèi)江 樂山 貸款邀約 廣州 大連 南京 銅川

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HttpClient Post 二進(jìn)制/字節(jié)流/byte[]實(shí)例代碼》,本文關(guān)鍵詞  HttpClient,Post,二進(jìn)制,字,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HttpClient Post 二進(jìn)制/字節(jié)流/byte[]實(shí)例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于HttpClient Post 二進(jìn)制/字節(jié)流/byte[]實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    宁波市| 女性| 阿拉善盟| 南陵县| 宁明县| 宜春市| 疏附县| 沈丘县| 南召县| 肇州县| 汾阳市| 县级市| 精河县| 新蔡县| 拉萨市| 财经| 镇赉县| 大渡口区| 双柏县| 涞源县| 广河县| 枝江市| 崇左市| 威海市| 海安县| 岗巴县| 西城区| 余姚市| 灵石县| 招远市| 洛浦县| 阿合奇县| 永昌县| 济南市| 得荣县| 屯昌县| 连平县| 丰城市| 永年县| 崇阳县| 台安县|