我一直在尝试多种从 URL 下载文件并将其放入文件夹的方法。
public static void saveFile(String fileName,String fileUrl) throws MalformedURLException, IOException {
FileUtils.copyURLToFile(new URL(fileUrl), new File(fileName));
}
boolean success = (new File("File")).mkdirs();
if (!success) {
Status.setText("Failed");
}
try {
saveFile("DownloadedFileName", "ADirectDownloadLinkForAFile");
} catch (MalformedURLException ex) {
Status.setText("MalformedURLException");
Logger.getLogger(DownloadFile.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Status.setText("IOException Error");
Logger.getLogger(DownloadFile.class.getName()).log(Level.SEVERE, null, ex);
}
我在网上找到了这段代码,我是否正确使用它?
如果我这样做了: saveFile("FolderName", "ADirectDownloadLinkForAFile")
我会收到IOException
错误
我想要我的代码做的是:
- 创建文件夹
- 下载文件
- 下载的文件转到刚刚创建的文件夹
我是这里的新手对不起。请帮忙