当前位置: 代码迷 >> 综合 >> 第八章 网络通讯
  详细解决方案

第八章 网络通讯

热度:23   发布时间:2023-11-22 19:39:06.0

forget406:Java Web 基础(一) 基于TCP的Socket网络编程:【这个代码把我坑到了,就一点点问题,没有编译或是运行时异常,但是就是出不来结果,插了半天也没见结果。】

https://www.cnblogs.com/forget406/p/5336748.html

 String msg=null;if((msg=br.readLine())!=null) {System.out.println("Client:"+msg);}修正:String msg=null;if((null!=(msg=br.readLine())) {System.out.println("Client:"+msg);}