0

我看到了关于这个主题的另一个问题。我试过了,但它仍然不适合我

我的代码:

File file = new File("C:\\Testing\\abc.pdf");
RandomAccessFile raf = new RandomAccessFile(file, "r");
ReadableByteChannel ch = Channels.newChannel(new FileInputStream(file));
FileChannel channel = raf.getChannel();
ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
PDFFile pdffile = new PDFFile(buf);

/* The rest code to convert pdf to image 
 * according to number of pages in pdf given above, which will not be provided here 
 */

/* Closing file */
raf.close();
ch.close();
channel.close();
buf.clear();

我的代码不起作用,它没有关闭文件

我的程序运行后无法删除该文件,它表示 Java SE 二进制平台已打开此文件。

如何关闭 PDFRenderer 打开的文件?

4

1 回答 1

0

从第一行和第三行中删除多余的')'。

File file = new File("C:\\Testing\\abc.pdf")); //last ')' one
ReadableByteChannel ch = Channels.newChannel(new FileInputStream(file)); //last ')' one

希望它会帮助你。

于 2013-08-03T08:45:37.663 回答