-
Bug
-
Resolution: Not an Issue
-
P2
-
None
-
1.1
-
None
-
x86
-
windows_nt
When you print with Java a Print Dialog window is displayed (JDK 1.1)
Under Solaris it's possible to set all the Print Dialog fields
using awt.print.* Properties. We don't have this possibility
under Window NT 3.5.1. Under Windows NT we have any control on
the Print Dialog window. Java is multi plateform and must
give same level of feature for all plateform. Customer regards that
as a bug.
Moreover, Under Solaris or Windows NT using native language and API
it's possible to print something without user interaction with a Print Dialog.
So it would be good to have the same possbility with Java API.
(if necessary I can open an other bug or rfe report for this)
To reproduice you can use the simple code below :
/////////////////////////////////////////////////////////////////////////////
import java.awt.Frame ;
import java.awt.PrintJob ;
import java.awt.Graphics ;
import java.awt.Button ;
import java.awt.Color ;
import java.awt.Font ;
import java.awt.event.ActionEvent ;
import java.awt.event.ActionListener ;
import java.util.Properties ;
import java.util.Enumeration ;
public class Imprime extends Frame implements ActionListener
{
private Properties props ;
public Imprime ()
{
super ("Imprimeur Java") ;
props = new Properties () ;
props.put ("awt.print.numCopies", "1") ;
// printer ou file
props.put ("awt.print.destination", "printer") ;
props.put ("awt.print.options", "-d panet") ;
// a4 ou letter ou ...
props.put ("awt.print.paperSize", "a4") ;
// landscape ou portrait
props.put ("awt.print.orientation", "portrait") ;
props.put ("awt.print.printer", "lp") ;
props.put ("awt.print.fileName", "/tmp/voir") ;
Button b = new Button ("Imprime") ;
b.addActionListener (this) ;
add (b) ;
setSize (100, 100) ;
show () ;
}
public static void main (String[] args)
{
Imprime imprime = new Imprime () ;
}
public void actionPerformed (ActionEvent evt)
{
PrintJob job = getToolkit().getPrintJob(
this,
"Test d'impression",
props) ;
if (job != null)
{
Enumeration liste = props.propertyNames() ;
while (liste.hasMoreElements())
{
String prop = (String) liste.nextElement() ;
String val = (String) props.get (prop) ;
System.out.println (prop + " = " + val) ;
}
System.out.println("Reso : " + job.getPageResolution()) ;
System.out.println("Dim x : " + job.getPageDimension().width) ;
System.out.println("Dim x : " + job.getPageDimension().height) ;
Graphics g = job.getGraphics();
if (g != null)
{
String[] list = getToolkit().getFontList() ;
g.setColor (Color.red) ;
g.drawLine (10, 10, 100, 100) ;
g.setColor (Color.blue) ;
g.fillRect (30, 30, 100, 100) ;
g.setFont (new Font(list[1], Font.PLAIN, 12)) ;
g.setColor (Color.black) ;
g.drawString ("Test d'impression", 20, 20) ;
g.dispose () ;
}
}
}
}
/////////////////////////////////////////////////////////////////////////////
Under Solaris it's possible to set all the Print Dialog fields
using awt.print.* Properties. We don't have this possibility
under Window NT 3.5.1. Under Windows NT we have any control on
the Print Dialog window. Java is multi plateform and must
give same level of feature for all plateform. Customer regards that
as a bug.
Moreover, Under Solaris or Windows NT using native language and API
it's possible to print something without user interaction with a Print Dialog.
So it would be good to have the same possbility with Java API.
(if necessary I can open an other bug or rfe report for this)
To reproduice you can use the simple code below :
/////////////////////////////////////////////////////////////////////////////
import java.awt.Frame ;
import java.awt.PrintJob ;
import java.awt.Graphics ;
import java.awt.Button ;
import java.awt.Color ;
import java.awt.Font ;
import java.awt.event.ActionEvent ;
import java.awt.event.ActionListener ;
import java.util.Properties ;
import java.util.Enumeration ;
public class Imprime extends Frame implements ActionListener
{
private Properties props ;
public Imprime ()
{
super ("Imprimeur Java") ;
props = new Properties () ;
props.put ("awt.print.numCopies", "1") ;
// printer ou file
props.put ("awt.print.destination", "printer") ;
props.put ("awt.print.options", "-d panet") ;
// a4 ou letter ou ...
props.put ("awt.print.paperSize", "a4") ;
// landscape ou portrait
props.put ("awt.print.orientation", "portrait") ;
props.put ("awt.print.printer", "lp") ;
props.put ("awt.print.fileName", "/tmp/voir") ;
Button b = new Button ("Imprime") ;
b.addActionListener (this) ;
add (b) ;
setSize (100, 100) ;
show () ;
}
public static void main (String[] args)
{
Imprime imprime = new Imprime () ;
}
public void actionPerformed (ActionEvent evt)
{
PrintJob job = getToolkit().getPrintJob(
this,
"Test d'impression",
props) ;
if (job != null)
{
Enumeration liste = props.propertyNames() ;
while (liste.hasMoreElements())
{
String prop = (String) liste.nextElement() ;
String val = (String) props.get (prop) ;
System.out.println (prop + " = " + val) ;
}
System.out.println("Reso : " + job.getPageResolution()) ;
System.out.println("Dim x : " + job.getPageDimension().width) ;
System.out.println("Dim x : " + job.getPageDimension().height) ;
Graphics g = job.getGraphics();
if (g != null)
{
String[] list = getToolkit().getFontList() ;
g.setColor (Color.red) ;
g.drawLine (10, 10, 100, 100) ;
g.setColor (Color.blue) ;
g.fillRect (30, 30, 100, 100) ;
g.setFont (new Font(list[1], Font.PLAIN, 12)) ;
g.setColor (Color.black) ;
g.drawString ("Test d'impression", 20, 20) ;
g.dispose () ;
}
}
}
}
/////////////////////////////////////////////////////////////////////////////
- relates to
-
JDK-4045174 RFE: provide a Java wrapper for printing on Win95
-
- Resolved
-