我已经编写了一个服务器和一个客户端来实现FTP,如果我创建文本文件并发送它们,它们工作正常。但是一旦我发送其他格式的文件,客户端上收到的文件就会被破坏。这里是我发送文件的代码
try
{
fis=new FileInputStream(filenm);
}
catch(FileNotFoundException exc)
{
filexists=false;
System.out.println("FileNotFoundException:"+exc.getMessage());
}
if(filexists)
{
System.out.println("sent");
sendBytes(fis, output);
fis.close();
}
private static void sendBytes(FileInputStream f,OutputStream op)throws Exception
{
byte[] buffer=new byte[1024];
int bytes=0;
while((bytes=f.read(buffer))!=-1)
{
op.write(buffer,0,bytes);
}
}
fis - FileInputStream对象 output - OutputStream对象(Socket.getOutputStream())
,客户端代码为:
File f=new File(dir,"file2");
FileOutputStream fos=new FileOutputStream(f);
DataOutputStream dops=new DataOutputStream(fos);
System.out.println("2nd Stage");
while(done)
{
fc2=br.read();
if(fc2==-1)
{
done=false;
}
else
{
dops.write(fc2);
}
}
fos.close();
System.out.println("File Recieved");
我正在使用正确的流吗?
答案 0 :(得分:1)
听起来您正在以ASCII模式发送二进制文件。
在您通过发送 PORT 或设置数据通道之前,在控制通道上发送 TYPE I 而不是 TYPE A PASV
命令。