JAVA发送http请求

package com.navinfo.util;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Map;

public class HttpRquester {

 /**
  * 发送HTTP请求
  *
  * @param urlString
  * @return 响映对象
  * @throws IOException
  */
 public String send(String urlString, String method,
   Map<String, String> parameters, Map<String, String> propertys)
   throws IOException {
  HttpURLConnection urlConnection = null;

  if (method.equalsIgnoreCase("GET") && parameters != null) {
   StringBuffer param = new StringBuffer();
   int i = 0;
   for (String key : parameters.keySet()) {
    if (i == 0)
     param.append("?");
    else
     param.append("&");
    param.append(key).append("=").append(parameters.get(key));
    i++;
   }
   urlString += param;
  }
  URL url = new URL(urlString);
  urlConnection = (HttpURLConnection) url.openConnection();

  urlConnection.setRequestMethod(method);
  urlConnection.setDoOutput(true);
  urlConnection.setDoInput(true);
  urlConnection.setUseCaches(false);
  urlConnection.setConnectTimeout(30000);
  urlConnection.setReadTimeout(30000);

  if (propertys != null)
   for (String key : propertys.keySet()) {
    urlConnection.addRequestProperty(key, propertys.get(key));
   }

  if (method.equalsIgnoreCase("POST") && parameters != null) {
   StringBuffer param = new StringBuffer();
   for (String key : parameters.keySet()) {
    param.append("&");
    param.append(key)
      .append("=")
      .append(new String(parameters.get(key).getBytes("GBK")));
   }
   urlConnection.getOutputStream().write(
     param.toString().getBytes("GBK"));
   urlConnection.getOutputStream().flush();
   urlConnection.getOutputStream().close();
  }

  return this.makeContent(urlString, urlConnection);
 }

 /**
  * 得到响应对象
  *
  * @param urlConnection
  * @return 响应对象
  * @throws IOException
  */
 private String makeContent(String urlString, HttpURLConnection urlConnection)
   throws IOException {
  try {
   InputStream in = urlConnection.getInputStream();
   BufferedReader bufferedReader = new BufferedReader(
     new InputStreamReader(in));
   StringBuffer temp = new StringBuffer();
   String line = null;
   while ((line = bufferedReader.readLine()) != null) {
    temp.append(line).append("\r\n");
   }
   bufferedReader.close();
   return temp.toString();
  } catch (IOException e) {
   throw e;
  } finally {
   if (urlConnection != null)
    urlConnection.disconnect();
  }
 }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值