url 远程连接

package com.wondersgroup.wx.weiXin.utils;

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

import org.apache.commons.lang3.StringUtils;

public class UrlConnectionUtils {
        
	/**get方式  map传递头部参数  参数可null **/
	public static String sendSetHeaderGetRequestByGet(String url,Map<String,String> map) throws Exception{
		HttpURLConnection httpURLConnection;
		InputStream input=null;
		BufferedReader reader=null;
		String result="";
		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"));
			result=reader.readLine();
			return result;
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			try {
				input.close();
				reader.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return null;
	  }
	
	/**post方式  map传递头部参数  参数可null  json字符串参数 可为null **/
	public static String sendSetHeaderGetRequestByPost(String url,Map<String,String> map,String json) throws Exception{
		HttpURLConnection httpURLConnection;
		InputStream input=null;
		BufferedReader reader=null;
		String result="";
		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"));
			result=reader.readLine();
			return result;
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			try {
				input.close();
				reader.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return null;
	  }
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值