黑马程序员技术交流社区
标题:
网络编程小问题?
[打印本页]
作者:
魏亮
时间:
2012-10-28 17:30
标题:
网络编程小问题?
import java.net.*;
import java.io.*;
class ServerDemo
{
public static void main(String[] args) throws Exception
{
ServerSocket ss = new ServerSocket(11111);
Socket s =ss.accept();
String ip = s.getInetAddress().getHostAddress();
System.out.println(ip+">>>已连接");
PrintWriter out = new PrintWriter(s.getOutputStream(),true);
out.println("自定义浏览器");
out.println("自定义浏览器");
out.println("自定义浏览器");
out.println("自定义浏览器");
//s.close();
//ss.close();
}
}
代码是这样,可用浏览器怎么就 怎么也连不上呢???
我确定服务端开了,用dos的telnet 命令可用返回数据。可用IE怎么也老连接不上呀?谁有类似经历?
求指教???
360截图-11713796.jpg
(23.13 KB, 下载次数: 18)
下载附件
2012-10-28 17:30 上传
作者:
徐升兴
时间:
2012-10-28 18:06
我学网络编程那一块儿的时候也是这样的,别用360,应该是浏览器的问题,多刷新几次
这样来,开启服务器,刷新一次,不行的话就关了服务器,再开启,再刷洗
作者:
李靖
时间:
2012-10-28 19:44
import java.net.*;
import java.io.*;
class ServerDemo
{
public static void main(String[] args) throws Exception
{
ServerSocket ss = new ServerSocket(11000);
while(true){
Socket s =ss.accept();
String ip = s.getInetAddress().getHostAddress();
System.out.println(ip+">>>已连接");
PrintWriter out = new PrintWriter(s.getOutputStream(),true);
out.println("<html><body>自定义浏览器</body></html>");
s.close();
}
//ss.close();
}
}
在用完Socket后你需要关闭,其他程序才能应用。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2