Primm
Primm

Reputation: 1387

Print RTF File (with dialog)

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

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168825

Desktop.getDesktop().print(new File("help.rtf"));

Upvotes: 5

Related Questions