我正在实现客户端/服务器文件的发送和接收。
实现:C 中的客户端和 Java 中的服务器。
正在发送的部分 C 代码:
long count;
FILE *file;
char *file_data;
file=fopen("test.txt","rb");
fseek (file , 0 , SEEK_END);
count = ftell (file);
rewind (file);
file_data=(char*)malloc(sizeof(char)*count);
fread(file_data,1,count+1,file);
fclose(file);
if ((numbytes = send(sockfd, file_data, strlen(file_data)+1 , 0)) == -1)
{
perror("client: send");
exit(1);
}
部分 Java 代码接收:
public String receiveFile()
{
String fileName="";
try
{
int bytesRead;
InputStream in = clientSocket.getInputStream();
DataInputStream clientData = new DataInputStream(in);
fileName=clientData.readUTF();
}
}
使用 readUTF() 函数后,服务器挂起或处于无限循环中,不会继续。我尝试过使用readLine()的BufferedReader。有一个错误,"找不到适合 BufferedReader(InputStream) 和 readLine() 的构造函数,给出警告。除了缓冲阅读器之外还有其他选择吗?
readUTF()
读取writeUTF()
编写的格式。您没有发送它,因此服务器无法读取它。使用read(byte[]),
或readFully(),
或new BufferedReader(newInputStreamReader(in));
如果使用readLine()
则需要发送换行符。在任一情况下,您都不需要发送尾随 null。