免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1794 | 回复: 0
打印 上一主题 下一主题

通过Socket发送http请求 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-09-19 11:32 |只看该作者 |倒序浏览

                import java.net.*;
import java.io.*;
public class URLSender {
    /**
     * @param args
     */
    public static void main(String[] args) throws IOException {
        try {
            Socket socket = new Socket("www.nwu.edu.cn", 80);
            boolean autoflush = true;
            PrintWriter out = new PrintWriter(socket.getOutputStream(),
                    autoflush);
            BufferedReader in = new BufferedReader(new InputStreamReader(socket
                    .getInputStream()));
        //         send an HTTP request to the web server
        out.println("GET / HTTP/1.1");
        out.println("Host: nwu.edu.cn");
        out.println("Connection: Close");
        out.println();
        //         read the response
        boolean loop = true;
        StringBuffer sb = new StringBuffer(8096);
        while (loop) {
            if (in.ready()) {
                int i = 0;
                while (i != -1) {
                    i = in.read();
                    sb.append((char) i);
                }
                loop = false;
            }
            //Thread.currentThread().sleep(50);
        }
        //         display the response to the out console
        System.out.println(sb.toString());
        socket.close();
        } catch (UnknownHostException e) {
            System.err.println("Don't know about host: Victest.");
            System.exit(1);
        } catch (IOException e) {
            System.err.println("Couldn't get I/O for "
                    + "the connection to: Victest.");
            System.exit(1);
        }
    }
}
Sending a POST Request Using a Socket
See also
e135 Sending a POST Request Using a URL
.
    try {
        // Construct data
        String data = URLEncoder.encode([color="#0066ff"]"key1", "UTF-8") + "=" + URLEncoder.encode([color="#0066ff"]"value1", "UTF-8");
        data += "&" + URLEncoder.encode([color="#0066ff"]"key2", "UTF-8") + "=" + URLEncoder.encode([color="#0066ff"]"value2", "UTF-8");
   
        // Create a socket to the host
        String hostname = [color="#0066ff"]"hostname.com";
        int port = [color="#0066ff"]80;
        InetAddress addr = InetAddress.getByName(hostname);
        Socket socket = new Socket(addr, port);
   
        // Send header
        String path = [color="#0066ff"]"/servlet/SomeServlet";
        BufferedWriter wr = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream(), "UTF8"));
        wr.write("POST "+path+" HTTP/1.0\r\n");
        wr.write("Content-Length: "+data.length()+"\r\n");
        wr.write("Content-Type: application/x-www-form-urlencoded\r\n");
        wr.write("\r\n");
   
        // Send data
        wr.write(data);
        wr.flush();
   
        // Get response
        BufferedReader rd = new BufferedReader(new InputStreamReader(socket.getInputStream()));
        String line;
        while ((line = rd.readLine()) != null) {
            // Process line...
        }
        wr.close();
        rd.close();
    } catch (Exception e) {
    }
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/16329/showart_173399.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP