import java.io.DataOutputStream;import java.net.Socket;public class TCPclient {public static void main(String[] args) throws Exception{ Socket s=new Socket("192.168.1.102",7776); DataOutputStream dos=new DataOutputStream(s.getOutputStream()); dos.writeUTF("hellor"); s.close(); dos.close();}import java.io.*;import java.net.ServerSocket;import java.net.Socket;public class TCPServer {public static void main(String[] args)throws Exception{ ServerSocket ss=new ServerSocket(7776); while(true){ Socket s=ss.accept(); DataInputStream dis=new DataInputStream(s.getInputStream()); System.out.println(dis.readUTF()); dis.close(); s.close(); }}}两个类文件如上。到低哪里出错了,我是看视频学习的,完全照着打的,Eclipse说我 System.out.println(dis.readUTF()); 这里出错,但我不明白为什么。
添加回答
举报
0/150
提交
取消