public static void main(String[] args) throws MalformedURLException, IOException, InterruptedException {
File pdfFile = new File("d:/test.pdf");
FileUtils.copyURLToFile(new URL("https://www.test.cn/test1.pdf"), pdfFile);
System.out.print(pdfFile.exists());
Thread.sleep(5000);
FileUtils.forceDelete(pdfFile);
}
12-24
9487
