我不知道这是否可能。首先我在Node.js中编写了客户端和服务器,然后服务器和客户端都用Java编写了那些按预期工作的。现在我对连接Java服务器和Node.js客户端感兴趣。但问题是它们之间无法发送日期
这是用Java编写的服务器端代码
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
public class MyServer {
public MyServer() {
}
public static void main(String args[]){
ServerSocket serverSocket= null;
Socket socket =null;
DataInputStream datainputstream=null;
DataOutputStream dataoutputstream=null;
try{
serverSocket = new ServerSocket(8888);
System.out.println("Listening ...");
}catch(IOException e){
e.printStackTrace();
}
while(true){
try{
socket = serverSocket.accept();
datainputstream = new DataInputStream(socket.getInputStream());
dataoutputstream = new DataOutputStream(socket.getOutputStream());
System.out.println("ip:"+socket.getInetAddress());
System.out.println("message:"+datainputstream.readUTF());
dataoutputstream.writeUTF("HELLO !");
}catch(IOException e){
e.printStackTrace();
}finally{
if(socket!=null){
try{
socket.close();
}catch(IOException e){
e.printStackTrace();
}
}
if(datainputstream!=null){
try{
datainputstream.close();
}catch(IOException e){
e.printStackTrace();
}
}
if(dataoutputstream !=null){
try{
dataoutputstream.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
}
}
这是用Node.js
编写的客户端代码 var net = require('net');
var HOST = '127.0.0.1';
var PORT = 8888;
var client = new net.Socket();
client.connect(PORT, HOST, function() {
console.log('connected to: ' + HOST + ':' + PORT);
client.write('Data comming from client...');
});
client.on('data', function(data) {
console.log(data.toString());
//client.destroy();
});
client.on('close', function() {
console.log('Connection closed');
});
答案 0 :(得分:2)
您的服务器(Java)在发送任何内容之前需要来自客户端的消息。它会阻塞,直到收到这样的消息。由于服务器似乎没有收到此消息,因此客户端实际上并未发送其消息(即,它正在对其进行排队,直到它收到更多要发送的数据),或者服务器期望接收更多数据。
DataInputStream.readUTF()
的文档声称它需要长度为前缀的字符串。这不是你的客户写的东西。服务器可能将字符串的前两个字节解释为长度,然后尝试读取那么多字节的数据,因为没有那么多数据可用,所以它将等待来自客户端的更多数据。请尝试使用BufferedReader.readLine()
,并确保您的客户端在其输出结束时发送换行符。
如果这不起作用,请尝试找到一种方法来刷新客户端上的套接字。我不知道Node.js,但是文档的快速浏览表明socket.end()
可能会有所帮助,但如果您以后需要发送更多数据,这将无效。
答案 1 :(得分:0)
以下是此
的解决方案服务器端代码
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.io.BufferedInputStream;
import java.io.*;
public class MyServer {
public MyServer() {
}
public static void main(String args[]){
ServerSocket serverSocket= null;
Socket socket =null;
BufferedReader datainputstream=null;
try{
serverSocket = new ServerSocket(8888);
System.out.println("Listening ...");
}catch(IOException e){
e.printStackTrace();
}
try{
socket = serverSocket.accept();
}catch(IOException e){
System.out.println("can't listen given port \n");
System.exit(-1);
}
try{
datainputstream = new BufferedReader(new InputStreamReader(socket.getInputStream()));
System.out.println("ip:"+socket.getInetAddress());
}catch(IOException e){
System.out.println("can't read File \n");
System.exit(-1);
}
try{
StringBuilder sb = new StringBuilder();
String line = null;
while((line=datainputstream.readLine())!=null){
sb.append(line+"\n");
}
datainputstream.close();
System.out.println("message:"+sb.toString());
}catch(IOException e){
System.out.println("Cant read file \n");
}finally{
if(socket!=null){
try{
socket.close();
}catch(IOException e){
e.printStackTrace();
}
}
if(datainputstream!=null){
try{
datainputstream.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
}
这是我的客户
客户端代码
var net = require('net');
var client = net.connect(8888, 'localhost');
client.write('Hello from node.js');
client.end();