这是自己写的一个tcp服务端程序
- public static void main(String[] args) throws Exception {
- ServerSocket ss = new ServerSocket(11000);
- while(true) {
- Socket s = ss.accept();
- System.out.println(s.getInetAddress().getHostAddress());
- PrintWriter out = new PrintWriter(s.getOutputStream(), true);
- out.println("登陆成功");
- s.close();
- }
- }
复制代码 想在浏览器中访问到这个服务端,通过输入127.0.0.1:11000 或者192.168.1.100:11000都不能访问到,谁知道是什么问题吗?
|
|