gpt4 book ai didi

java - -Java- TCP 中的数据 'loss'(奇怪,因为 TCP 不允许数据转义)

转载 作者:可可西里 更新时间:2023-11-01 02:47:22 27 4
gpt4 key购买 nike

首先,我知道这里已经有几篇关于类似问题的帖子,但我仔细阅读了它们,发现它们的问题不是我的,它们的解决方案也不能解决我的问题。如果有人有解决我问题的帖子,请回复并附上链接,我会继续努力。

现在,问题来了——我有一个客户端和一个服务器。客户端请求一个文件,服务器发送它,然后客户端接收它,或者至少应该是这样。但事实并非如此。相反会发生什么?客户端接收到前 1024 个字节,然后是下一个 1024 个字节,然后接收到 436 个字节(我总是使用相同的文件,所以我总是得到相同的结果)并结束,因为它收到的少于 1024 个字节,因此它有比它必须执行的最后一次读取要少,但不应该,因为服务器在从其 FileInputStream 读取文件时,会读取更多的字节(更多的 1024 字节)。我已经尝试了我想象的一切,但我没有得到积极的结果:总是,第三部分不是全部接收,而是只接收到字节 436(也许发生的情况是,从第三部分开始倒数第二个由于某种原因被跳过,然后最后一个是 436 字节并被接收,尽管我不认为是这种情况,因为整个文件没有在服务器中读取,因为客户端关闭连接一旦它认为传输已经完成,就会在服务器上引发异常,中断它读取任何内容。

下面是我认为的关键代码:

服务器

OutputStream put;
try {
ServerSocket serverSocket;
try {
serverSocket = new ServerSocket(DesktopClient.PORT_FOR_FILES);
} catch (IOException ex) {
JOptionPane.showMessageDialog(null, ex.toString(), "Error", JOptionPane.ERROR_MESSAGE);
return false;
}
Socket socket;
try {
socket = serverSocket.accept();
ActionWindow.println("Connection for files transference stablished - " + socket);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, ex.toString(), "Error", JOptionPane.ERROR_MESSAGE);
return false;
}
put = socket.getOutputStream();
BufferedReader requestedVideoBufferedReader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
String requiredVideo = requestedVideoBufferedReader.readLine();
while (!requiredVideo.matches("finish") && !requiredVideo.matches("errored")) {
ActionWindow.println("The screen in the router " + ActionWindow.currentConn + " is asking for " + requiredVideo);
if (new File(ActionWindow.pathToVideosFolder + requiredVideo + ActionWindow.videoFilesExtension).exists()) {
try (InputStream in = new FileInputStream(ActionWindow.pathToVideosFolder + requiredVideo + ActionWindow.videoFilesExtension)) {
byte[] buf = new byte[1024];
int len;
System.out.println("About to write");
while (true) {
len = in.read(buf);
System.out.println("len: " + len);
if (len > 0) {
put.write(buf, 0, len);
} else {
break;
}
}
}
ActionWindow.println("File " + requiredVideo + ActionWindow.videoFilesExtension + " sent.");
} else {
ActionWindow.println("File " + requiredVideo + ActionWindow.videoFilesExtension + " couldn't be found in the local index.");
put.close();
socket.close();
serverSocket.close();
return false;
}
requiredVideo = requestedVideoBufferedReader.readLine();
}
if (requiredVideo.matches("errored")) {
JOptionPane.showMessageDialog(null, "Se produjo un error en la transmisión de archivos. Los datos del servidor no han sido modificados.", "Error", JOptionPane.ERROR_MESSAGE);
}
put.close();
socket.close();
serverSocket.close();
ActionWindow.println("Connecion finished.");
} catch (IOException ex) {
if (!(ex instanceof SocketException)) { //This means that the exception has not been caused by finishing the transference.
JOptionPane.showMessageDialog(null, ex.toString(), "Error", JOptionPane.ERROR_MESSAGE);
return false;
} else {
return true;
}
}
return true;

客户端

fileRequester.println(x);
ServerDaemon.println("Requested " + x);
File destFile = new File(ServerDaemon.pathToVideosFolder + x + ServerDaemon.videoFilesExtension);
byte[] buf = new byte[1024];
OutputStream streamForWritingToFile;
try {
streamForWritingToFile = new FileOutputStream(destFile);
} catch (FileNotFoundException ex) {
ServerDaemon.println(ex.toString());
return false;
}
int len;
try {
while (true) {
len = streamFromServer.read(buf);

if (len > 0) {
streamForWritingToFile.write(buf, 0, len);
} else {
break;
}

if (len != 1024) {
break;
}
}
} catch (IOException ex) {
ServerDaemon.println(ex.toString());
if (ex instanceof SocketException) {
ServerDaemon.disconnect();
}
return false;
}

ServerDaemon.println("Received file " + x);

编辑:作为临时解决方案,我通过 UDP 发送文件大小,以便接收方知道它必须等待多少数据。但是,最好让它通过 TCP 工作,但它不起作用(看看@PeterLawrey 的回答中的评论)。这是我为使其通过 TCP 工作而尝试的方法:

接收者:

BufferedReader inFromClient;
int fileSize;
String receivedSizeMsg = null;
try {
inFromClient = new BufferedReader(new InputStreamReader(socket.getInputStream()));
receivedSizeMsg = inFromClient.readLine();
} catch (IOException ex) {
ServerDaemon.println(ex.toString());
}
fileSize = Integer.parseInt(receivedSizeMsg.substring(4));

发件人:

DataOutputStream outToServer;
outToServer = new DataOutputStream(socket.getOutputStream());
outToServer.writeBytes("size" + new File(file+"\n");

第二次编辑:使用 TCP:

接收者:

DataInputStream inFromClient;
int fileSize = 0;
inFromClient = new DataInputStream(socket.getInputStream());
fileSize = Integer.parseInt(inFromClient.readUTF().substring(4));

发件人:

DataOutputStream outToServer;
outToServer = new DataOutputStream(socket.getOutputStream());
outToServer.writeUTF("size" + new File(ActionWindow.pathToVideosFolder + requiredVideo + ActionWindow.videoFilesExtension).length());

最佳答案

你这里有问题。

                if (len != 1024) {
break;
}

这假设数据将以与发送时相同的长度到达,但事实并非如此。阻塞 read() 只能保证读取一个字节。从您的代码中删除它,它现在可能会工作。

例如,TCP 通常将数据组合成大约 1500 字节的数据包。当您读取数据时,您可以比发送数据更快地读取数据,因此您可能希望读取一个 1024 字节的 block ,然后是 476 字节(减去任何 TCP header )


编辑:一个简单的发送文件和接收文件的方法。

public static void sendFile(DataOutputStream out, String fileName) throws IOException {
FileInputStream fis = new FileInputStream(fileName);
try {
byte[] bytes = new byte[8192];
int len;
out.writeInt((int) fis.getChannel().size());
while ((len = fis.read(bytes)) > 0)
out.write(bytes, 0, len);
} finally {
fis.close();
}
}

public static void recvFile(DataInputStream in, String fileName) throws IOException {
FileOutputStream fos = new FileOutputStream(fileName);
try {
byte[] bytes = new byte[8192];
int left = in.readInt();
int len;
while(left > 0 && (len = in.read(bytes, 0, Math.min(left, bytes.length))) > 0) {
fos.write(bytes, 0, len);
left -= len;
}
} finally {
fos.close();
}
}

关于java - -Java- TCP 中的数据 'loss'(奇怪,因为 TCP 不允许数据转义),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11777828/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com