Can a Java Applet able to print out text/html easily to standard printer driver(s) (with all common platforms Win/Mac/Linux)?
Does it need to be signed?
|
2
|
|
|
|
|
|
To print you will either need to use Signed Applets or if an unsigned applet tries to print, the user will be prompted to ask whether to allow permission. Here is some sample code for printing HTML using JEditorPane:
Then to send it to printer:
|
||||||||
|
|
|
In order to print, the security manager needs to allow it to access the printer. This means either signing the applet or, at least with recent versions of Sun's Java plugin, if an unsigned applet tries to print, the uesr will be prompted to ask whether to allow permission. |
||||||||
|