我有以下代码用于从客户端到服务器tcp的上传文件但是当我尝试手动打开文件为空时为什么好的重量..
我在stackOverflow上看了很多帖子,但没有任何改变
谢谢
(抱歉我的英语不好)
服务器:
公共类ThreadServer扩展了线程{
private Socket soc;
private FileOutputStream fos;
private BufferedOutputStream bos;
private InputStream in;
public ThreadServer (Socket soc) {
this.soc = soc;
}
public void run(){
try {
fos = new FileOutputStream("C:/Users/erwan/workspace/Word/server/text.txt");
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
bos = new BufferedOutputStream(fos);
byte[] buffer = new byte[1024];
try {
in = soc.getInputStream();
int count = 0;
while((count= in.read(buffer, 0 , buffer.length)) != -1) {
System.out.println(count+" octets received...");
bos.write(buffer);
}
bos.flush();
bos.close();
in.close();
soc.close();
System.out.println("File sent succesfully!");
}catch(IOException e){
e.printStackTrace();
System.out.println("Une erreur est survenu");
}
}
}
客户端:
public class Client {
private static Socket as;
private static FileInputStream fis;
private static BufferedInputStream bis;
private static OutputStream out;
public static void main( String[] args ){
as = null;
try{
as = new Socket(InetAddress.getLocalHost(),4020);
File f = new File (args[0]);
byte [] buffer = new byte [(int) f.length()];
fis = new FileInputStream(f);
setBis(new BufferedInputStream(fis));
out = as.getOutputStream();
System.out.println("uploading...");
out.write(buffer,0,buffer.length);
out.flush();
out.close();
System.out.println("the file is uploaded.");
as.close();
}catch(IOException e){
e.printStackTrace();
}
}
答案 0 :(得分:0)
客户端中的缓冲区似乎没有填充数据。它被初始化为具有文件长度的字节数组,但是在输入流上没有完成读取方法调用。为了测试fis.read(缓冲区),可能会很快将一些数据放入缓冲区。请记住,读取不能保证填充缓冲区的整个长度。因此,特别是如果您的文件包含零,那么缺少将实际数据读入缓冲区(客户端)可能是罪魁祸首。
除此之外,服务器代码还假定read方法完全填充缓冲区,因此write方法调用应指定长度(count)。所以将bos.write(buffer)更改为bos.write(bos,0,count)。这可能会在文件末尾变得明显(如果文件长度超过1024个字节),因为文件的末尾将重复上一个块中的某些数据。