验证完的贴出来了
import java.io.*;
import java.net.*;
class TcpClient
{ public static void main (String [] args) throws Exception
{ Socket s = new Socket("192.168.1.255",10004);
OutputStream out= s.getOutputStream();
out.write("服务端你好,我来了".getBytes());
InputStream in = s.getInputStream();
byte[] buf = new byte[1024];
int len = in.read(buf);
System.out.println(new String(buf,0,len));
s.close();
}
}
class TcoServert
{ public static void main (String [] args) throws Exception
{ ServerSocket ss= new ServerSocket(10004);
Socket s= ss.accept();
String ip = s.getInetAddress().getHostAddress();
System.out.println(ip+"...connection");
InputStream in = s.getInputStream();
byte[] buf = new byte[1024];
int len = in.read(buf);
System.out.println(new String(buf,0,len));
OutputStream out = s.getOutputStream();
out.write("我收到服务器的回答了".getBytes());
s.close();
ss.close();
}
} |