再会
我正在使用 ftpclient 下载文件,并且下载成功,但是将其转换为文件时遇到问题
例如,我正在下载一个名为“helper.pdf”的文件,我想将该文件按原样下载到一个名为“helper.pdf”的本地文件中
这是我的代码
FTPClient client = new FTPClient();
FileOutputStream fos = null;
try
{
client.connect(Host);
client.login(user_ftp, password_ftp);
if (client.changeWorkingDirectory("workingdirectory"))
{
fos = new FileOutputStream(Copy_file);
if (client.retrieveFile(Copy_file, fos))
{
//System.out.println("FOS : "+fos.toString());
//ObjectInputStream restore_file = new ObjectInputStream(fos);
}
fos.close();
}
JOptionPane.showMessageDialog(null, "Downloaded", "Info", JOptionPane.INFORMATION_MESSAGE);
}
catch (Exception err)
{
JOptionPane.showMessageDialog(null, "Error downloading update file", "Error", JOptionPane.ERROR_MESSAGE);
}
所以问题是如何将 FileOutputStream 转换为 pdf 或将其保存为 pdf 文件。