关于java,tcp/ip长连接,接收终端信息
我想实现,比如有若干个终端,向一个java做的tcp/ip程序发送一个协议串,然后解析。我的做法是:部分代码:publicvoidrun(){while(running)...
我想实现,比如有若干个终端,向一个java做的tcp/ip程序发送一个协议串,然后解析。
我的做法是:
部分代码:
public void run() {
while (running) {
try {
BufferedReader is = new BufferedReader(new InputStreamReader(in));
String tmp = is.readLine();
System.out.println("" + tmp);
send("s->c ok\n");
} catch (Exception e) {
e.printStackTrace();
}
}
try {
if (socket != null)
socket.close();
} catch (IOException e) {
}
}
我用java做了个客户端程序,通过socket发送给服务端,服务端可以接收并显示。但是我使用tcp/ip测试工具确无法接收到数据。请高手给个java做服务端接收终端设备通过tcp/ip通讯的例子。(用java实现的基于tcp/ip的例子我已经实现) 展开
我的做法是:
部分代码:
public void run() {
while (running) {
try {
BufferedReader is = new BufferedReader(new InputStreamReader(in));
String tmp = is.readLine();
System.out.println("" + tmp);
send("s->c ok\n");
} catch (Exception e) {
e.printStackTrace();
}
}
try {
if (socket != null)
socket.close();
} catch (IOException e) {
}
}
我用java做了个客户端程序,通过socket发送给服务端,服务端可以接收并显示。但是我使用tcp/ip测试工具确无法接收到数据。请高手给个java做服务端接收终端设备通过tcp/ip通讯的例子。(用java实现的基于tcp/ip的例子我已经实现) 展开
展开全部
//客户端
import java.net.*;
import java.io.*;
public class TCPClient {
public static void main(String[] args) throws Exception {
Socket s = new Socket("127.0.0.1", 6666);
OutputStream os = s.getOutputStream();
DataOutputStream dos = new DataOutputStream(os);
Thread.sleep(30000);
dos.writeUTF("hello server!");
dos.flush();
dos.close();
s.close();
}
}
//服务器端
import java.net.*;
import java.io.*;
public class TCPServer {
public static void main(String[] args) throws Exception {
ServerSocket ss = new ServerSocket(6666);
while(true) {
Socket s = ss.accept();
System.out.println("a client connect!");
DataInputStream dis = new DataInputStream(s.getInputStream());
System.out.println(dis.readUTF());
dis.close();
s.close();
}
}
}
你自己理解下把。。。
import java.net.*;
import java.io.*;
public class TCPClient {
public static void main(String[] args) throws Exception {
Socket s = new Socket("127.0.0.1", 6666);
OutputStream os = s.getOutputStream();
DataOutputStream dos = new DataOutputStream(os);
Thread.sleep(30000);
dos.writeUTF("hello server!");
dos.flush();
dos.close();
s.close();
}
}
//服务器端
import java.net.*;
import java.io.*;
public class TCPServer {
public static void main(String[] args) throws Exception {
ServerSocket ss = new ServerSocket(6666);
while(true) {
Socket s = ss.accept();
System.out.println("a client connect!");
DataInputStream dis = new DataInputStream(s.getInputStream());
System.out.println(dis.readUTF());
dis.close();
s.close();
}
}
}
你自己理解下把。。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询