Chinaunix首页 | 论坛 | 博客
  • 博客访问: 473415
  • 博文数量: 155
  • 博客积分: 2954
  • 博客等级: 少校
  • 技术积分: 1000
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-12 22:00
文章分类

全部博文(155)

文章存档

2014年(2)

2013年(5)

2012年(10)

2011年(33)

2010年(105)

我的朋友

分类: Java

2011-09-12 14:27:17

 
HttpConnection例子

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.logging.Logger;
/**
 * User: libofeng Date: 2006-10-31 Time: 13:45:52 Description:
 * http
 */
public class HttpUtil {
    /**
  *
  *
  * @param urlString
  *           
  * @return
  */
    public static String get(String urlString) {
        Logger log = Logger.getLogger("HttpUtil.get(String url)");
        StringBuffer stringBuffer = new StringBuffer();
        if (urlString.equalsIgnoreCase("")) {
            return null;
        } else if (urlString.toLowerCase().startsWith("http://")) {
        } else {
            return null;
        }

        HttpURLConnection httpConnection;
        URL url;
        int code;
        try {
            url = new URL(urlString);
            httpConnection = (HttpURLConnection) url.openConnection();
            httpConnection.setRequestMethod("GET");
            httpConnection.setDoOutput(true);
            httpConnection.setDoInput(true);
            // OutputStreamWriter writer = new
   // OutputStreamWriter(httpConnection.getOutputStream());
            // writer.close();
            code = httpConnection.getResponseCode();
        } catch (Exception e) {
            return null;
        }
        if (code == HttpURLConnection.HTTP_OK) {
            try {
                String strCurrentLine;
                BufferedReader reader = new BufferedReader(new InputStreamReader(httpConnection.getInputStream()));
                while ((strCurrentLine = reader.readLine()) != null) {
                    stringBuffer.append(strCurrentLine).append("\n");
                }
                reader.close();
            } catch (IOException e) {
            }
        }
        return stringBuffer.toString();
    }
    /**
  * post
  *
  * @param urlString
  *           
  * @param parameters
  *          
  * @return
  */
    public static String post(String urlString, String parameters) {
        Logger log = Logger.getLogger("HttpUtil.post(String urlString, String parameters)");
        StringBuffer stringBuffer = new StringBuffer();
       
        if (urlString.equalsIgnoreCase("")) {
            return null;
        } else if (urlString.toLowerCase().startsWith("http://")) {
        } else {
            return null;
        }

        HttpURLConnection httpConnection;
        URL url;
        int code;
        try {
            url = new URL(urlString);
            httpConnection = (HttpURLConnection) url.openConnection();
            httpConnection.setRequestMethod("POST");
            httpConnection.setRequestProperty("Content-Length", String.valueOf(parameters.length()));
            httpConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            httpConnection.setDoOutput(true);
            httpConnection.setDoInput(true);
            /*
    * PrintWriter printWriter = new
    * PrintWriter(httpConnection.getOutputStream());
    * printWriter.print(parameters); printWriter.close();
    */
            OutputStreamWriter outputStreamWriter= new OutputStreamWriter(httpConnection.getOutputStream(), "8859_1");
            outputStreamWriter.write(parameters);
            outputStreamWriter.flush();
            outputStreamWriter.close();
 

            code = httpConnection.getResponseCode();
        } catch (Exception e) {
            return null;
        }
        if (code == HttpURLConnection.HTTP_OK) {
            try {
                String strCurrentLine;
                BufferedReader reader = new BufferedReader(new InputStreamReader(httpConnection.getInputStream()));
                while ((strCurrentLine = reader.readLine()) != null) {
                    stringBuffer.append(strCurrentLine).append("\n");
                }
                reader.close();
            } catch (IOException e) {
            }
        }
        return stringBuffer.toString();
    }
}
阅读(1672) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~