HttpURLConnection get post 方式请求 (笔记)

public class UrlConnectionUtils {
        
	/**get方式  map传递头部参数  参数可null **/
	public static String sendRequestByGet(String url,Map<String,String> map) throws Exception{
		HttpURLConnection httpURLConnection;
		InputStream input=null;
		BufferedReader reader=null;
		try {
			URL sendUrl = new URL(url);
			httpURLConnection = (HttpURLConnection)sendUrl.openConnection();
			httpURLConnection.setRequestMethod("GET");
			httpURLConnection.setDoOutput(true);        //指示应用程序要将数据写入URL连接,其值默认为false
			httpURLConnection.setUseCaches(false);
			httpURLConnection.setConnectTimeout(30000); //30秒连接超时
			httpURLConnection.setReadTimeout(30000);    //30秒读取超时
			httpURLConnection.setRequestProperty("contentType", "utf-8");
			if(map != null){
				//设置头部参数
				httpURLConnection.setRequestProperty(null, map.get(null));
			}
			httpURLConnection.connect();
			input=httpURLConnection.getInputStream();
			reader=new BufferedReader(new InputStreamReader(input,"UTF-8"));
			StringBuilder builder=new StringBuilder();
			String s="";
			while ((s = reader.readLine()) != null) {  
		        	builder.append(s);  
		    }
			return builder.toString();
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			try {
				input.close();
				reader.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return null;
	  }
	
	/**
	 * get方式  map传递头部参数  参数可null
	 *  param 可为null -->  id=32&name=liYang&sex=nan
	 *  **/
	public static String sendRequestByGet(String url,Map<String,String> map,String param) throws Exception{
		HttpURLConnection httpURLConnection;
		InputStream input=null;
		BufferedReader reader=null;
		try {
			URL sendUrl=null;
			if(StringUtils.isBlank(param)){
				sendUrl = new URL(url);
			}else{
				sendUrl = new URL(url+"?"+param);
			}
			httpURLConnection = (HttpURLConnection)sendUrl.openConnection();
			httpURLConnection.setRequestMethod("GET");
			httpURLConnection.setDoOutput(true);        //指示应用程序要将数据写入URL连接,其值默认为false
			httpURLConnection.setUseCaches(false);
			httpURLConnection.setConnectTimeout(30000); //30秒连接超时
			httpURLConnection.setReadTimeout(30000);    //30秒读取超时
			httpURLConnection.setRequestProperty("contentType", "utf-8");
			if(map != null){
				//设置头部参数
				httpURLConnection.setRequestProperty(null, map.get(null));
			}
			httpURLConnection.connect();
			input=httpURLConnection.getInputStream();
			reader=new BufferedReader(new InputStreamReader(input,"UTF-8"));
			StringBuilder builder=new StringBuilder();
			String s="";
			while ((s = reader.readLine()) != null) {  
		        	builder.append(s);  
		    }
			return builder.toString();
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			try {
				input.close();
				reader.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return null;
	  }
	
	/**
	 * post方式
	 *  map传递头部参数  参数可null 
	 *  json(contentType)字符串参数 可为null 
	 *   **/
	public static String sendRequestByPost(String url,Map<String,String> map,String json) throws Exception{
		HttpURLConnection httpURLConnection;
		InputStream input=null;
		BufferedReader reader=null;
		try {
			URL sendUrl = new URL(url);
			httpURLConnection = (HttpURLConnection)sendUrl.openConnection();
			httpURLConnection.setRequestMethod("POST");
			httpURLConnection.setDoOutput(true);        //指示应用程序要将数据写入URL连接,其值默认为false
			httpURLConnection.setUseCaches(false);
			httpURLConnection.setConnectTimeout(30000); //30秒连接超时
			httpURLConnection.setReadTimeout(30000);    //30秒读取超时
			httpURLConnection.setRequestProperty("contentType", "application/Json; charset=UTF-8");
			if(map != null){
				//设置头部参数
				httpURLConnection.setRequestProperty(null, map.get(null));
			}
			httpURLConnection.connect();
			//传入参数
			if(!StringUtils.isBlank(json)){
				OutputStream output=httpURLConnection.getOutputStream();
				output.write(json.getBytes());
				output.flush();
				output.close();
			}
			input=httpURLConnection.getInputStream();
			reader=new BufferedReader(new InputStreamReader(input,"UTF-8"));
			StringBuilder builder=new StringBuilder();
			String s="";
			while ((s = reader.readLine()) != null) {  
		        	builder.append(s);  
		    }
			return builder.toString();
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			try {
				input.close();
				reader.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return null;
	  }
	
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值