Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4344897

1.1 printing API: doesn't print with Win98/Epson Photo Stylus 750 printer

XMLWordPrintable

    • 02
    • x86
    • windows_98
    • Verified

        A configuration that does not work is the following:

        Windows 98 / Second Edition / German
        Epson Photo Stylus 750 Printer

        If you run Print2.class with JDK-1.2.2_005 on this configuration, the printer
        dialog comes up, in the print monitor you see that something is sent to the
        printer, but nothing is printed out.

        ---------
        import java.awt.*;
        import java.util.Properties;

        public class Print2
        {
          public static void main(String[] args)
          {
            Frame frame = new Frame("preview");
            frame.setVisible(true);
            System.out.println(System.getProperties());
            Properties printProps = new Properties();
            printProps.put("awt.print.paperSize", "A4");
            //printProps.put("awt.print.orientation", "landscape");
            System.out.println("Print2.main: printProps: " + printProps);
            PrintJob printJob = null;
            Toolkit tk = Toolkit.getDefaultToolkit();
            System.out.println("tk: " + tk);
            try {
              printJob =
              Toolkit.getDefaultToolkit().getPrintJob(frame, "title", printProps);
            } catch (ClassCastException e) {
              System.out.println("caught exception: " + e);
              System.exit(1);
            }
            System.out.println("Print2.main: 1");
            System.out.println("Print2.main: printProps: " + printProps);
            Graphics g = printJob.getGraphics();
            g.setColor(Color.black);
            int y = 0;
            for (int i = 0; i <= 6; i++) {
              int size = 8 + 2 * i;
              Font font = new Font("Serif", Font.PLAIN, size);
              g.setFont(font);
              g.drawString("Serif, PLAIN, " + size, 100, 100 + y);
              y += g.getFontMetrics(font).getHeight();
            }
            g.dispose();
            System.out.println("Print2.main: 2");
            printJob.end();
            System.out.println("Print2.main: 3");
            printJob = null;
            g = null;
            System.exit(0);
          }
        }
         

              busersunw Btplusnull User (Inactive)
              duke J. Duke
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: