基于jdk,urlApi的http请求工具类

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/camary_niu/article/details/79020050
package com.bx.util;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class UrlConnectionUtil {
	
	private static final String BASEURL = "http://127.0.0.1:8080/GQPlatform/";
	/**
	 * url对象的openStream()只能读取网络资源,返回流使用有限
	 * 这里只做简单的测试
	 */
	public static void testOpenStream(){
	
		try {
			//创建url对象
			URL url = new URL("http://www.baidu.com");
			//打开连接,返回InputStream对象
			InputStream is = url.openStream();
			//处理输入流,写入本地文件中
			InputStreamReader isr = new InputStreamReader(is);
			BufferedReader br = new BufferedReader(isr);
			//构造本地文件对应的输出流
			File file = new File("d:\\testOpenStream.txt");
			BufferedWriter bw = new BufferedWriter(new FileWriter(file));
			//读、写
			String str;
			while((str = br.readLine()) != null){
				bw.write(str);
				bw.newLine();
			}
			bw.flush();
			bw.close();
			br.close();
		} catch (MalformedURLException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	
	/**
	 * 发送get请求
	 * 调用openConnection方法,
	 * 返回UrlConnection对象,建立一个可读可写的连接
	 * @param url
	 * @param parmsMap
	 * @return
	 */
	public static String sendGet(String url,Map<String, String> parmsMap){
		
		StringBuffer resultStr = new StringBuffer();
		URLConnection connection = null;
		InputStream is = null;
		BufferedReader br = null;
		url = BASEURL + url;
		//参数处理拼接到url上
		if(null != parmsMap && !parmsMap.isEmpty()){
			//遍历map
			for(String key:parmsMap.keySet()){
				
				url = url+"&"+key+"="+parmsMap.get(key);
			}
		}
		
		try {
			//新建url对象
			URL urlApi = new URL(url);
			//打开连接获取urlConnection对象
			connection = urlApi.openConnection();
			//设置通用属性
			connection.setRequestProperty("accept", "*/*");  
            connection.setRequestProperty("connection", "Keep-Alive");  
            connection.setRequestProperty("user-agent",  
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            //建立实际连接
            connection.connect();
            //用map接收响应头信息
//            Map<String, List<String>> headersMap = new HashMap<String, List<String>>();
//            headersMap = connection.getHeaderFields();
//            for(String key : headersMap.keySet()){
//            	System.out.println(key+">>>>>>>>>>>>>"+headersMap.get(key));
//            }
            //用io流处理响应内容
            is = connection.getInputStream();
            br = new BufferedReader(new InputStreamReader(is,"UTF-8"));
            String tmpStr;
            while((tmpStr = br.readLine()) != null){
            	resultStr.append(tmpStr);
            }
            
		} catch (MalformedURLException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			try {
				if(null != is){
					is.close();
				}
				if(null != br){
					br.close();
				}	
			} catch (IOException e) {
				e.printStackTrace();
			}
            
		}
		return resultStr.toString();
	}
	
	/**
	 * 发送post请求
	 * @param url
	 * @param parmsMap
	 * @return
	 */
	public static String sendPost(String url,Map<String, String> parmsMap){ 
		
		StringBuffer resultStr = new StringBuffer();
		url = BASEURL + url;
		StringBuffer parms = new StringBuffer();
		BufferedWriter writer = null;
		BufferedReader reader = null;
		try {
			//创建url对象
			URL urlApi = new URL(url);
			//参数处理
			if(null != parmsMap && !parmsMap.isEmpty()){
				for(String key:parmsMap.keySet()){
					parms.append(key+"="+parmsMap.get(key)).append("&");
				}
			}
			if(parms.length()>0){
				parms.deleteCharAt(parms.length()-1);
			}
			URLConnection urlConnection = urlApi.openConnection();
			HttpURLConnection httpURLConnection = (HttpURLConnection)urlConnection;
			// 发送POST请求必须设置如下两行  
			httpURLConnection.setDoOutput(true);  
			httpURLConnection.setDoInput(true);  
			httpURLConnection.setRequestMethod("POST");    // POST方法 
			//设置通用属性
			httpURLConnection.setRequestProperty("accept", "*/*");  
			httpURLConnection.setRequestProperty("connection", "Keep-Alive");  
			httpURLConnection.setRequestProperty("user-agent",  
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
			//建立实际连接
			httpURLConnection.connect();
			//用输出流发送参数
			OutputStream os = httpURLConnection.getOutputStream();
			writer = new BufferedWriter(new OutputStreamWriter(os,"UTF-8"));
			writer.write(parms.toString());
			writer.flush();
			//用输入流接收响应信息
			InputStream is = httpURLConnection.getInputStream();
			reader = new BufferedReader(new InputStreamReader(is,"UTF-8"));
			String tmpStr;
			while((tmpStr=reader.readLine()) != null){
				resultStr.append(tmpStr);
			}
		} catch (MalformedURLException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			try {
				if(null != writer){
					writer.close();
				}
				if(null != reader){
					reader.close();
				}
			} catch (IOException e) {
				e.printStackTrace();
			}
			
		}
		return resultStr.toString();
	}
}

猜你喜欢

转载自blog.csdn.net/camary_niu/article/details/79020050