I'm working on a Javafx project and have successfully converted it to a .dmg file using IntelliJ. On feature is that when a button is pressed, a PDF should be created and saved in the dowloads folder. This works perfectly when running the program in IntelliJ, but doesn't work in the application version of the program(one you get after opening the .dmg file). I am using Apache PDFBox to create the PDFs.
This is the method use to save the PDF, document has been initialized and isn't empty:
public void savePDF(String title) throws IOException{
String home = System.getProperty("user.home");
document.save(home+"/Downloads/"+title+".pdf");
System.out.println("PDF created");
}
I have tried changing the output folder in which the PDF file is created but it didn't change anything.
You should consider a more clear way of getting an output file. I have no experience with Apache PDFBox itself, but there's basic ancillary code you should consider adding to improve your app.
Rough example:
The
Notifications
class comes from the ControlsFX library. Feel free to replace with a plain dialog.