I'm trying to write a PDF file in Java to say the words hello neckbeards but when I run my program, Adobe Reader opens but an error comes up saying:
There was an error opening this document.
The file is already open or in use by another application.
Here's my code:
import java.awt.Desktop;
import java.io.*;
public class count10 {
public static void main(String[] args) throws Exception {
File tempfile = File.createTempFile("report", ".pdf");
FileWriter pfile = new FileWriter(tempfile);
pfile.write("hello neckbeards");
Desktop dtop = null;
if (Desktop.isDesktopSupported()) {
dtop = Desktop.getDesktop();
}
if (dtop.isSupported(Desktop.Action.OPEN)){
String path = tempfile.getPath();
dtop.open(new File(path));
}
}
}
@neckbeard691) If this is homework, please mark it with thehomeworktag. 2) When you found an answer that solves your problem, please accept it by checking its green tick, near the votes area. Thanks! – jmendeth Oct 12 '11 at 18:22