java中兩種發起POST請求,並接收返回的響應內容的方式  (轉)


http://xyz168000.blog.163.com/blog/static/21032308201162293625569/

2、利用java自帶的java.net.*包下提供的工具類

代碼如下:

/**
  * 利用URL發起POST請求,並接收返回信息
  *
  * @param url 請求URL
  * @param message 請求參數
  * @return 響應內容
  */
 @Override
 public String transport(String url, String message) {
  StringBuffer sb = new StringBuffer();
  try {
   URL urls = new URL(url);
   HttpURLConnection uc = (HttpURLConnection) urls.openConnection();
   uc.setRequestMethod("POST");
   uc.setRequestProperty("content-type",
     "application/x-www-form-urlencoded");
   uc.setRequestProperty("charset", "UTF-8");
   uc.setDoOutput(true);
   uc.setDoInput(true);
   uc.setReadTimeout(10000);
   uc.setConnectTimeout(10000);
   OutputStream os = uc.getOutputStream();
   DataOutputStream dos = new DataOutputStream(os);
   dos.write(message.getBytes("utf-8"));
   dos.flush();
   os.close();
   BufferedReader in = new BufferedReader(new InputStreamReader(uc
     .getInputStream(), "utf-8"));
   String readLine = "";
   while ((readLine = in.readLine()) != null) {
    sb.append(readLine);
   }
   in.close();
  } catch (Exception e) {
   log.error(e.getMessage(), e);
  }
  return sb.toString();
 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM