- 论坛徽章:
- 0
|
回复 4楼 jakieyoung 的帖子
我写的是不带buffer的数据流因此不用flush.
附完整的代码,实现服务器和客户端发送接收数据流
import java.io.*;
import java.net.*;
public class SocketTest {
public static void main(String[] args) throws IOException {
server();
client();
}
/*服务器端的程序*/
public static void server() throws IOException
{
ServerSocket sso=new ServerSocket(6000);
Socket so=sso.accept();
OutputStream os=so.getOutputStream();
os.write("hello".getBytes());
InputStream is=so.getInputStream();
byte[] input=new byte[100];
int len=is.read(input);
System.out.println(new String(input,0,len));
is.close();
os.close();
so.close();
sso.close();
}
/*客户端程序*/
public static void client() throws UnknownHostException, IOException
{
Socket clientSo=new Socket(InetAddress.getByName(null),6000);
InputStream is=clientSo.getInputStream();
byte[] buff=new byte[100];
int len=is.read(buff);
System.out.println(new String(buff,0,len));
OutputStream os=clientSo.getOutputStream();
os.write("hello,i am liutao".getBytes());
os.close();
is.close();
clientSo.close();
}
} |
|