Reputation: 1387
How can i open a standard print dialog (like in Word/Wordpad) to print an RTF Document from Java? (Cross Platform is preferred but not necessary)
Upvotes: 2
Views: 1060
Reputation: 168825
Desktop.getDesktop().print(new File("help.rtf"));
Upvotes: 5