美好的一天
我正在使用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文件。
答案 0 :(得分:3)
File file = new File("c:/help.pdf");
fos = new FileOutputStream(file);
if (client.retrieveFile("help.pdf", fos))