A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.net.Socket;
import java.net.UnknownHostException;

public class IeClient {
        public static void main(String[]args) throws UnknownHostException, IOException{
                Socket s=new Socket("192.168.1.100",8080);
                PrintWriter out=new PrintWriter(s.getOutputStream(),true);
               
                out.println("GET /index.html http/1.1");
                out.println("Accept: */*");
                out.println("Accept-Encoding: gzip, deflate");
                out.println("User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
                out.println("Host: 192.168.1.100:8080");
                out.println("Connection: close");
                out.println();
                out.println();
               
                InputStream is=s.getInputStream();
                byte[]buf=new byte[1024];
                int len=is.read(buf);
                String text=new String(buf,0,len);
                System.out.println(text);
               
                s.close();
               
        }

}

控制台显示:
HTTP/1.1 505 HTTP Version Not Supported
Server: Apache-Coyote/1.1
Date: Mon, 01 Jul 2013 14:43:42 GMT
Connection: close


接收不到服务器发来的请求资源,这是什么问题造成的?

1 个回复

倒序浏览
应该是没连接上服务器吧
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马