我试图从同一应用程序的其他一些软件包中的itext创建的java应用程序的一个软件包中删除一个pdf文件
我使用了以下代码,但我在这两种情况下都遇到了一些错误......
File existing = new File(RESULT);
existing.deleteOnExit();
src = Paths.get(RESULT);
try {
existing.
Files.deleteIfExists(src);
} catch (IOException ex){}*/