1.javasocketԴ?源码????
javasocketԴ?????
//客户端
public static void main(String[] args) throws Exception
{
Socket socket = new Socket(".0.0.1", );
OutputStream os = socket.getOutputStream();
os.write("hello world".getBytes());
os.close();//客户端使用完流之后记得要关闭!!分析chm排版软件源码
}
//服务端
public static void main(String[] args) throws Exception
{
ServerSocket ss = new ServerSocket();
Socket socket = ss.accept();
InputStream is = socket.getInputStream();
byte[] buffer = new byte[];
int length = 0;
while (-1 != (length = is.read(buffer,源码东方财富资金博弈指标源码 0, buffer.length)))//这句错了,是分析人事管理系统asp源码不等于!
{
String str = new String(buffer,源码图书管理系统php源码 0, length);
System.out.println("welcome "+str);
}
}