473,396 Members | 1,724 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Applet and Java Printing API

I am trying to print from an applet using the Java Print API.

If I run the applet on appletviewer then things work fine i.e. I am
able to get the print out. If I run the applet on a browser then the
print icon is loaded on the system tray and there is no print outs. I
am trying to print on HP laser jet printer.

Please help me to sort the err in the code or my understaning.

Thanks a ton!!!

JAVA_HelloWorld
Jul 17 '05 #1
5 29412

"java_helloworld" <ja*************@indiatimes.com> wrote in message
news:be**************************@posting.google.c om...
I am trying to print from an applet using the Java Print API.

If I run the applet on appletviewer then things work fine i.e. I am
able to get the print out. If I run the applet on a browser then the
print icon is loaded on the system tray and there is no print outs. I
am trying to print on HP laser jet printer.

Please help me to sort the err in the code or my understaning.

Thanks a ton!!!

JAVA_HelloWorld


Is the applet signed? If it's not, you won't be able to print due to
security constraints.
Jul 17 '05 #2
> Is the applet signed? If it's not, you won't be able to print due to
security constraints.


Yes the applet is not a signed Applet. I think with the Java printng
API we can print from an unsigned applet also. It just that before
printing it asks for a confirmation something like "Do you want to
allow the applet wants to print?".

I am able to instantiate the print icon on the system tray but not
able to spool to the printer.

If I run the code as a applet application i.e. using appletviewer then
things are fine but as I run on an HTML page the print icon loads on
the system tray but the print outs are not there on the printer.

Please excuse the coding standards.

Thanks,
Java Hello World

Here is the snapshot of the code.

package Applet.unsigned;

import java.awt.*;
import java.awt.event.*;
import java.io.IOException;
import java.net.*;

import javax.print.*;
import javax.print.attribute.*;
import javax.print.attribute.standard.*;
import javax.swing.*;

public class PrinterApplet extends JApplet {
//~ Instance fields
================================================== ======

private PrintRequestAttributeSet aset;
DocFlavor DocFlavor;
public Doc doc;
DocPrintJob printerJob;
JTextPane pane;

//~ Methods ================================================== ==============

/**
* DOCUMENT ME!
*/
public void init() {
getContentPane().setLayout(new BorderLayout());

pane = new JTextPane();
pane.setSize(150, 100);
pane.setContentType("text/html");
pane.setText(
"<html><center><b><big>Applet Test</big></b><br>"
+ "</center></html>");
getContentPane().add(pane, "Center");

JPanel buttons = new JPanel();
buttons.setBackground(Color.white);

JButton print = new JButton("Print");

buttons.add(print);

getContentPane().add(buttons, "South");

print.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
print();
}
});
}

/**
* DOCUMENT ME!
*/
void prep() {

URL url = null;
aset = new HashPrintRequestAttributeSet();
aset.add(MediaSizeName.ISO_A4);
aset.add(new Copies(1));

try {
url =
new URL("http://sohowww.nascom.nasa.gov//data//realtime//eit_171//512//latest.gif");

} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

PrintService pservices =
PrintServiceLookup.lookupDefaultPrintService();
System.out.println(pservices.getName());
//DocFlavor flavor = javax.print.DocFlavor.INPUT_STREAM.GIF;
DocFlavor flavor = javax.print.DocFlavor.URL.GIF;
//doc = new InputStreamDoc("a.gif", flavor);
//doc = new InputStreamDoc(pane.getText(), flavor);
doc = new SimpleDoc(url, javax.print.DocFlavor.URL.GIF, null);
try {
System.out.println("DOC : \n " + doc.getPrintData());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
/* Create a Print Job */
printerJob = pservices.createPrintJob();

}

/**
* DOCUMENT ME!
*/
void print() {
prep();
System.out.println("Printer Name : " +
printerJob.getPrintService());
try {
printerJob.print(doc, aset);

} catch (PrintException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Done Printing.");
}

}
Jul 17 '05 #3
> url =
new URL("http://sohowww.nascom.nasa.gov//data//realtime//eit_171//512//latest.gif");


Here's your problem. An unsigned applet is not allowed to make a
connection to a host other than the one it was loaded from. I would
have thought DocPrintJob would throw an exception, but it appears to
be swallowing it silently.

url.openConnection();
url.openStream();

This will throw an AccessControlException as expected. Either sign the
applet, or host the image locally.
Jul 17 '05 #4
Thanks Murray, for the clarification. But I am able to print the
picture from the URL, if I run the Unsigned Applet as a Application
i.e. not on a web -browser.

BTW do you know any website/article/book, which talks about uses and
limitations of Java Printing and Unsigned/Signed Applet.
Jul 17 '05 #5
On 12 May 2004 03:15:16 -0700, java_helloworld wrote:

[ F'Ups set to c.l.j.help ]
Thanks Murray, for the clarification. But I am able to print the
picture from the URL, if I run the Unsigned Applet as a Application
i.e. not on a web -browser.


Yes, that supports what Murray was saying,
applications can do anything, whereas applets
are limited by the applet 'security sandbox'..

To 'break out' of the applet sandbox, you
need to jar and sign your classes..
<http://www.physci.org/codes/javafaq.jsp#jar>

[ Unfortunatley that entry focuses on 'double
click lauch' applications, but the 'jar/sign'
bit relates equally to applet security. ]

The only other option is to change the policy
files settings in the user's browser, which
seems only good for testing purposes..

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: nathanlaan | last post by:
This is the stupidest thing I have ever seen. Java 1.2, 1.3, and 1.4.1, and 1.4.2 all define the Applet.getDocumentBase() method differently! How am I supposed to get the directory of the document...
2
by: Michael | last post by:
Hello Currently I'm migrating an applet from Java 1.1 to 1.3. Targetplattform: Microsoft Internet Explorer 5.x with Sun's Java VM 1.3.1 Problem: The attached applet works fine with the...
0
by: James Hong | last post by:
Help please, I try to sending an email from my html page using the java applet. but it give error on most of the PC only very few work, what is the error i make the java applet show as below ...
1
by: Tormod Omholt-Jensen | last post by:
Ï need to dynamically insert an applet into a document. In IE 6.0 my code works fine, but there seems to be problems in Opera 7. The page looks like there is allocated space for an applet. ...
3
by: Larry Martin | last post by:
I am trying to run a Java Applet on my ascx page and am getting an IO exception when IE6 tries to load the applet. It seems a lot of others are getting the same problem but a search of the web did...
4
by: KenH | last post by:
I have a charting applet that has a print method that works just fine. My problem is I am trying to initiate the print method from a javascript routine but it doesn't work. I access my applet...
0
by: ankur | last post by:
WHEN I RUN THIS WEB APPLICATION ON Tomcat5.5.9 SERVER MY HttpChatApplet sccessfully Loaded from ChatDispatch but running on some another PC HttpChatApplet not loaded my Coad ...
0
by: shanmukhi | last post by:
Hi All I got a problem in running java programs. i am not able to run java applet while running i got a problem as Loading Java Applet Failed java.lang.NoClassDefFoundError: App (wrong...
0
by: shanmukhi | last post by:
Hi All I got a problem in running java Applet i am not able to run java applet while running i got a problem as Loading Java Applet Failed java.lang.NoClassDefFoundError: App (wrong name:...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.