-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0, 1.2.1, 1.2.2, 1.3.0
-
generic, x86
-
generic, windows_nt
pad", "1.00", "2.49", new Date(), new Integer(10), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.TRUE,"legal pad", "1.00", "2.49", new Date(), new Integer(25), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
//+++ 2
/*
{"Boolean.TRUE","Box of Biros", "1.00", "4.99", new Date(), new Integer(50), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.FALSE","Blue Biro", "0.10", "0.14", new Date(), new Integer(98), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.TRUE","legal pad", "1.00", "2.49", new Date(), new Integer(100), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.FALSE","legal pad", "1.00", "2.49", new Date(), new Integer(10), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.TRUE","legal pad", "1.00", "2.49", new Date(), new Integer(25), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
*/
};
JTable ppTable;
JTableHeader tableHeader;
int[] subTableSplit = null;
boolean pageinfoCalculated=false;
int totalNumPages=0;
int prevPageIndex = 0;
int subPageIndex = 0;
int subTableSplitSize = 0;
double tableHeightOnFullPage;
double headerHeight;
double pageWidth, pageHeight;
int fontHeight, fontDesent;
double tableHeight;
double rowHeight;
//-------------------------------------------------------------------------
public void init() {
TableModel dataModel = new AbstractTableModel() {
public int getColumnCount() { return headers.length; }
public int getRowCount() { return data.length;}
public Object getValueAt(int row, int col) {return data[row][col];}
public String getColumnName(int column) {return headers[column];}
public Class getColumnClass(int col) {return getValueAt(0,col).getClass();}
public boolean isCellEditable(int row, int col) {return (col==1);}
public void setValueAt(Object aValue, int row, int column) { data[row][column] = aValue; }
};
ppTable = new JTable(dataModel);
TableColumnModel tableColumnModel = ppTable.getColumnModel();
TableColumn tableColumn = null;
tableColumn = tableColumnModel.getColumn(0);
tableColumn.setMinWidth(30);
tableColumn.setPreferredWidth(30);
tableColumn = tableColumnModel.getColumn(5);
tableColumn.setMinWidth(100);
tableColumn.setPreferredWidth(100);
JScrollPane scrollpane = new JScrollPane(ppTable);
JButton printButton= new JButton();
scrollpane.setPreferredSize(new Dimension(500, 80));
getContentPane().setLayout(new BorderLayout());
getContentPane().add(BorderLayout.CENTER,scrollpane);
printButton.setText("print me!");
getContentPane().add(BorderLayout.SOUTH,printButton);
// for faster printing turn double buffering off
RepaintManager.currentManager(this).setDoubleBufferingEnabled(false);
printButton.addActionListener( new ActionListener(){
public void actionPerformed(ActionEvent evt) {
PrinterJob pj=PrinterJob.getPrinterJob();
pj.setPrintable( SalesReport.this );
if( pj.printDialog() ){
try{
pj.print();
}catch (Exception PrintException) {}
}
}
});
setVisible(true);
}
//-------------------------------------------------------------------------
public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
Graphics2D g2 = (Graphics2D)g;
if( ! pageinfoCalculated ) {
getPageInfo(g, pageFormat);
}
g2.setColor(Color.black);
if( pageIndex >= totalNumPages ) {
return NO_SUCH_PAGE;
}
if ( prevPageIndex != pageIndex ) {
subPageIndex++;
if( subPageIndex == subTableSplitSize - 1 ) {
subPageIndex=0;
}
}
g2.translate( pageFormat.getImageableX(), pageFormat.getImageableY() );
int rowIndex = pageIndex / (subTableSplitSize - 1);
printTablePart( g2, pageFormat, rowIndex, subPageIndex );
prevPageIndex= pageIndex;
return Printable.PAGE_EXISTS;
}
//-------------------------------------------------------------------------
void getPageInfo(Graphics g, PageFormat pageFormat) {
subTableSplit = null;
subTableSplitSize = 0;
subPageIndex = 0;
prevPageIndex = 0;
fontHeight=g.getFontMetrics().getHeight();
fontDesent=g.getFontMetrics().getDescent();
tableHeader = ppTable.getTableHeader();
double headerWidth = tableHeader.getWidth();
headerHeight = tableHeader.getHeight() + ppTable.getRowMargin();
pageHeight = pageFormat.getImageableHeight();
pageWidth = pageFormat.getImageableWidth();
double tableWidth = ppTable.getColumnModel().getTotalColumnWidth();
tableHeight = ppTable.getHeight();
rowHeight = ppTable.getRowHeight() + ppTable.getRowMargin();
tableHeightOnFullPage = (int)(pageHeight - headerHeight - (fontHeight*2));
tableHeightOnFullPage = (tableHeightOnFullPage / rowHeight) * rowHeight;
TableColumnModel tableColumnModel = tableHeader.getColumnModel();
int columns = tableColumnModel.getColumnCount();
int columnMargin = tableColumnModel.getColumnMargin();
int[] temp = new int[columns];
int columnIndex = 0;
temp[0] = 0;
int columnWidth;
int length = 0;
subTableSplitSize = 0;
while ( columnIndex < columns ) {
columnWidth = tableColumnModel.getColumn(columnIndex).getWidth();
if ( (length + columnWidth + columnMargin) > pageWidth ) {
temp[subTableSplitSize+1] = temp[subTableSplitSize] + length;
length = columnWidth;
subTableSplitSize++;
}
else {
length += (columnWidth + columnMargin);
}
columnIndex++;
}
if ( length > 0 ) { // if are more columns left, part page
temp[subTableSplitSize+1] = temp[subTableSplitSize] + length;
subTableSplitSize++;
}
subTableSplitSize++;
subTableSplit = new int[subTableSplitSize];
for ( int i=0; i < subTableSplitSize; i++ ) {
subTableSplit[i]= temp[i];
}
totalNumPages = (int)( tableHeight / tableHeightOnFullPage );
if ( (tableHeight % tableHeightOnFullPage) >= rowHeight ) { // at least 1 more row left
totalNumPages++;
}
totalNumPages *= (subTableSplitSize-1);
pageinfoCalculated = true;
}
//-------------------------------------------------------------------------
void printTablePart(Graphics2D g2, PageFormat pageFormat, int rowIndex, int columnIndex) {
String pageNumber = null;
pageNumber = "Page: "+(rowIndex+1);
if ( subTableSplitSize > 1 ) {
pageNumber += "-" + (columnIndex+1);
}
int pageLeft = subTableSplit[columnIndex];
int pageRight = subTableSplit[columnIndex + 1];
int pageWidth = pageRight-pageLeft;
// page number message (pageWidth doit etre calcule sur la page et non sur les colonnes imprimables)
g2.setFont(new Font("Dialog",Font.PLAIN,9));
g2.drawString(pageNumber, 0 /*pageWidth/2-35*/, (int)(pageHeight - fontHeight));
double clipHeight = Math.min(tableHeightOnFullPage, tableHeight - rowIndex*tableHeightOnFullPage);
g2.translate(-subTableSplit[columnIndex], 0);
g2.setClip(pageLeft ,0, pageWidth, (int)headerHeight);
tableHeader.paint(g2); // draw the table's header on every page
g2.translate(0, headerHeight);
g2.translate(0, -tableHeightOnFullPage*rowIndex);
// cut table image and draw on the page
g2.setClip(pageLeft, (int)tableHeightOnFullPage*rowIndex, pageWidth, (int)clipHeight);
ppTable.paint(g2);
double pageTop = tableHeightOnFullPage*rowIndex - headerHeight;
// double pageBottom = pageTop + clipHeight + headerHeight;
g2.drawRect(pageLeft, (int)pageTop, pageWidth, (int)(clipHeight+ headerHeight));
}
//-------------------------------------------------------------------------
}
(Review ID: 95323)
======================================================================
Name: krT82822 Date: 10/07/99
Add a new JRadioButton created with the default constructor
to a panel and then print the panel. The following code is called
by my print action listener on the my Screen which extends
JPanel.
public int print(Graphics graphics, PageFormat pf, int pageIndex) {
if (pageIndex != 0) return Printable.NO_SUCH_PAGE;
Graphics2D g2 = (Graphics2D)graphics;
g2.translate(pf.getImageableX(), pf.getImageableY());
paint (g2);
return Printable.PAGE_EXISTS;
}
---------------------------
output:
Exception occurred during event dispatching:
java.lang.IllegalArgumentException: Zero length string passed to TextLayout cons
tructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:337)
at sun.java2d.PathGraphics.drawString(PathGraphics.java:426)
at javax.swing.plaf.basic.BasicGraphicsUtils.drawString(Compiled Code)
at javax.swing.plaf.basic.BasicRadioButtonUI.paint(BasicRadioButtonUI.ja
va:162)
at javax.swing.plaf.ComponentUI.update(Compiled Code)
at javax.swing.JComponent.paintComponent(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at ClientInfrastructure.Screen.Screen.print(Screen.java:100)
at sun.java2d.RasterPrinterJob.printPage(Compiled Code)
at sun.java2d.RasterPrinterJob.print(Compiled Code)
at Framework.Actions.PrintAction.actionPerformed(PrintAction.java:25)
at javax.swing.AbstractButton.fireActionPerformed(Compiled Code)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1101)
at javax.swing.DefaultButtonModel.fireActionPerformed(Compiled Code)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250
)
at javax.swing.AbstractButton.doClick(AbstractButton.java:226)
at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseRelease
d(BasicMenuItemUI.java:674)
at java.awt.Component.processMouseEvent(Compiled Code)
at java.awt.Component.processEvent(Compiled Code)
at java.awt.Container.processEvent(Compiled Code)
at java.awt.Component.dispatchEventImpl(Compiled Code)
at java.awt.Container.dispatchEventImpl(Compiled Code)
at java.awt.Component.dispatchEvent(Compiled Code)
at java.awt.LightweightDispatcher.retargetMouseEvent(Compiled Code)
at java.awt.LightweightDispatcher.processMouseEvent(Compiled Code)
at java.awt.LightweightDispatcher.dispatchEvent(Compiled Code)
at java.awt.Container.dispatchEventImpl(Compiled Code)
at java.awt.Window.dispatchEventImpl(Compiled Code)
at java.awt.Component.dispatchEvent(Compiled Code)
at java.awt.EventQueue.dispatchEvent(Compiled Code)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
(Review ID: 96248)
======================================================================
Name: dbT83986 Date: 01/11/99
I nead to print child-components(like JCheckBoxs) that have no parent,
because they are renderer-components in a container, something like
JTable. The problem is that I am getting an Exception when they are not
attached to a parent-container, the Exception occures in a
drawString(...) method in one of all that Graphics implementations in
the sun package.
I didn't understand in which Graphics-Class it really relays,
here is the Exception:
java.lang.IllegalArgumentException: Zero length string passed to
TextLayout constructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:337)
at sun.java2d.PeekGraphics.drawString(PeekGraphics.java:845)
at
javax.swing.plaf.basic.BasicGraphicsUtils.drawString(BasicGraphicsUtils.java:230)
at
javax.swing.plaf.metal.MetalRadioButtonUI.paint(MetalRadioButtonUI.java:175)
at javax.swing.plaf.ComponentUI.update(ComponentUI.java:43)
at javax.swing.JComponent.paintComponent(JComponent.java:324)
at javax.swing.JComponent.paint(JComponent.java:547)
at printbutton.paint(printbutton.java:36)
at printbutton.print(printbutton.java:51)
at
sun.java2d.RasterPrinterJob.printPage(RasterPrinterJob.java:486)
at sun.java2d.RasterPrinterJob.print(RasterPrinterJob.java:235)
at printbutton.actionPerformed(printbutton.java:61)
at
javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1066)
at
javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1101)
at
javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
at
javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
at
javax.swing.plaf.basic.BasicButtonListener$ReleasedAction.actionPerformed(BasicButtonList
ener.java:269)
at
javax.swing.JComponent.processKeyBinding(JComponent.java:1537)
at
javax.swing.JComponent.processKeyBindings(JComponent.java:1550)
at javax.swing.JComponent.processKeyEvent(JComponent.java:1466)
at java.awt.Component.processEvent(Component.java:2974)
at java.awt.Container.processEvent(Container.java:987)
at java.awt.Component.dispatchEventImpl(Component.java:2376)
at java.awt.Container.dispatchEventImpl(Container.java:1032)
at java.awt.Component.dispatchEvent(Component.java:2289)
at
java.awt.LightweightDispatcher.processKeyEvent(Container.java:1671)
at
java.awt.LightweightDispatcher.dispatchEvent(Container.java:1655)
at java.awt.Container.dispatchEventImpl(Container.java:1019)
at java.awt.Window.dispatchEventImpl(Window.java:714)
at java.awt.Component.dispatchEvent(Component.java:2289)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:258)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
This Exception will be thrown when I try to print a JCheckBox without a
parent and with it's label == null or "".
First I thought about the TextLayout-Class, the constructor should
accept String-Object with length == 0, but I found the following in the
bug parade:
>Bug Id: 4138921
>Synopsis: TextLayout handling of empty strings
>State: Closed, not a bug
I don't understand why throwing an exception should be correct, but OK,
I cannot change this.
My next step was to take a look to the MetalRadioButtonUI.paint
implementation,
here is the original code:
public synchronized void paint(Graphics g, JComponent c) {
AbstractButton b = (AbstractButton) c;
ButtonModel model = b.getModel();
Dimension size = c.getSize();
int w = size.width;
int h = size.height;
Font f = c.getFont();
g.setFont(f);
FontMetrics fm = g.getFontMetrics();
Rectangle viewRect = new Rectangle(size);
Rectangle iconRect = new Rectangle();
Rectangle textRect = new Rectangle();
Icon altIcon = b.getIcon();
Icon selectedIcon = null;
Icon disabledIcon = null;
String text = SwingUtilities.layoutCompoundLabel(
c, fm, b.getText(), altIcon != null ? altIcon :
getDefaultIcon(),
b.getVerticalAlignment(), b.getHorizontalAlignment(),
b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
viewRect, iconRect, textRect, getDefaultTextIconGap(b)
);
// fill background
if(c.isOpaque()) {
g.setColor(b.getBackground());
g.fillRect(0,0, size.width, size.height);
}
// Paint the radio button
if(altIcon != null) {
if(!model.isEnabled()) {
altIcon = b.getDisabledIcon();
} else if(model.isPressed() && model.isArmed()) {
altIcon = b.getPressedIcon();
if(altIcon == null) {
// Use selected icon
altIcon = b.getSelectedIcon();
}
} else if(model.isSelected()) {
if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverSelectedIcon();
if (altIcon == null) {
altIcon = (Icon) b.getSelectedIcon();
}
}
else {
altIcon = (Icon) b.getSelectedIcon();
}
} else if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverIcon();
}
if(altIcon == null) {
altIcon = b.getIcon();
}
altIcon.paintIcon(c, g, iconRect.x, iconRect.y);
} else {
getDefaultIcon().paintIcon(c, g, iconRect.x, iconRect.y);
}
// Draw the Text
if(text != null) {
if(model.isEnabled()) {
// *** paint the text normally
g.setColor(b.getForeground());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x, textRect.y +
fm.getAscent());
} else {
// *** paint the text disabled
g.setColor(b.getBackground().darker());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x,
textRect.y +
fm.getAscent());
}
if(b.hasFocus() && b.isFocusPainted() &&
textRect.width > 0 && textRect.height > 0 ) {
paintFocus(g,textRect,size);
}
}
}
I would change it like this:
public synchronized void paint(Graphics g, JComponent c) {
AbstractButton b = (AbstractButton) c;
ButtonModel model = b.getModel();
Dimension size = c.getSize();
int w = size.width;
int h = size.height;
Font f = c.getFont();
g.setFont(f);
FontMetrics fm = g.getFontMetrics();
Rectangle viewRect = new Rectangle(size);
Rectangle iconRect = new Rectangle();
Rectangle textRect = new Rectangle();
Icon altIcon = b.getIcon();
Icon selectedIcon = null;
Icon disabledIcon = null;
String text = SwingUtilities.layoutCompoundLabel(
c, fm, b.getText(), altIcon != null ? altIcon :
getDefaultIcon(),
b.getVerticalAlignment(), b.getHorizontalAlignment(),
b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
viewRect, iconRect, textRect, getDefaultTextIconGap(b)
);
// fill background
if(c.isOpaque()) {
g.setColor(b.getBackground());
g.fillRect(0,0, size.width, size.height);
}
// Paint the radio button
if(altIcon != null) {
if(!model.isEnabled()) {
altIcon = b.getDisabledIcon();
} else if(model.isPressed() && model.isArmed()) {
altIcon = b.getPressedIcon();
if(altIcon == null) {
// Use selected icon
altIcon = b.getSelectedIcon();
}
} else if(model.isSelected()) {
if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverSelectedIcon();
if (altIcon == null) {
altIcon = (Icon) b.getSelectedIcon();
}
}
else {
altIcon = (Icon) b.getSelectedIcon();
}
} else if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverIcon();
}
if(altIcon == null) {
altIcon = b.getIcon();
}
altIcon.paintIcon(c, g, iconRect.x, iconRect.y);
} else {
getDefaultIcon().paintIcon(c, g, iconRect.x, iconRect.y);
}
// Draw the Text
// PO:
// PATCH:
// Provisorisch !!!!
// if(text != null) {
if(text.length() > 0) {
if(model.isEnabled()) {
// *** paint the text normally
g.setColor(b.getForeground());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x, textRect.y +
fm.getAscent());
} else {
// *** paint the text disabled
g.setColor(b.getBackground().darker());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x,
textRect.y +
fm.getAscent());
}
if(b.hasFocus() && b.isFocusPainted() && textRect.width > 0
&& textRect.height > 0 ) {
paintFocus(g,textRect,size);
}
}
}
The test if the variable text is not null, is obsolate, because the call
to
SwingUtilities.layoutCompoundLabel(...) at the beginning of the method
ensures it!
I would only optimize the method and avoid a call to drawString if there
is no text to
draw. And this solves also my problem, now components without a parent
assigned can be printed without any exceptions, even if they have an
empty label.
(Review ID: 52430)
======================================================================
Name: dbT83986 Date: 04/15/99
This is not really a bug.
When I tried to print a JTable with some null cells, I got
the following exception.
I do prefer that it just prints nothing with null cells. Null values
are pretty common in RDBMS.
java.lang.IllegalArgumentException: Zero length string passed to TextLayout constructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:337)
at sun.java2d.PathGraphics.drawString(PathGraphics.java:426)
at javax.swing.plaf.basic.BasicGraphicsUtils.drawString(Compiled Code)
at javax.swing.plaf.basic.BasicLabelUI.paintEnabledText(Compiled Code)
at javax.swing.plaf.basic.BasicLabelUI.paint(Compiled Code)
at javax.swing.plaf.ComponentUI.update(Compiled Code)
at javax.swing.JComponent.paintComponent(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.CellRendererPane.paintComponent(Compiled Code)
at javax.swing.plaf.basic.BasicTableUI.paintCell(Compiled Code)
at javax.swing.plaf.basic.BasicTableUI.paintRow(Compiled Code)
at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:676)
at javax.swing.plaf.ComponentUI.update(Compiled Code)
at javax.swing.JComponent.paintComponent(Compiled Code)
at JDBCTable.print(JDBCTable.java:367)
at sun.java2d.RasterPrinterJob.printPage(RasterPrinterJob.java:504)
at sun.java2d.RasterPrinterJob.print(RasterPrinterJob.java:235)
at JDBCTable.doPrint(JDBCTable.java:397)
at JDBCTablePanel$2.run(JDBCTablePanel.java:629)
at java.lang.Thread.run(Thread.java:479)
======================================================================
Name: skT88420 Date: 09/16/99
DESCRIPTION :
I can't print a JTable that contains a Boolean column
(rendered using defaut renderer : probably JCheckBox)
CONFIGURATION :
NT WS 4.0 US + SP5
JDK 1.2.2
RAM : 144Mo
STEPS :
I use the SalesReport.java example advanced printing code i find on JDC
and I add a Boolean column
1) create a policy file named print.jpol that contains :
grant {
permission java.lang.RuntimePermission "queuePrintJob";
};
2) create a html file named SalesReport.html to launch the SalesReport applet
3) compile the code :
javac SalesReport.java
4) run the applet :
\jdk12\bin\appletviewer -J-Djava.security.policy=print.jpol SalesReport.html
5) click on the "print me" button
when you look at the printer window, you see that the document
start printing but stops immediately
and nothing is printing
and no error or information message
To ensure the code works
6) comment the code that is tagged by //+++ 1 in the source
this code contains Boolean data to feed the JTable
in the first column
7) uncomment the code tha is tagged by //+++ 2 in the source
this code contains String data to feed the JTable
in the first column
8) compile as in step 3)
9) run as in step 4)
10)print
all works well
JAVA VERSION :
java version "1.2.2"
HotSpot VM (1.0.1, mixed mode, build g)
java full version "JDK-1.2.2-W"
SOURCE CODE (saved in SalesReport.java) :
// create a policy file print.jpol to launch the applet that should contains :
// grant {
// permission java.lang.RuntimePermission "queuePrintJob";
// };
//
//run with :
// \jdk12\bin\appletviewer -J-Djava.security.policy=print.jpol SalesReport.html
//
//BUG :
// Can't print the JCheckBox
import javax.swing.*;
import javax.swing.table.*;
import java.awt.font.*;
import java.awt.geom.*;
import java.awt.print.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Dimension;
public class SalesReport extends JApplet implements Printable {
final String[] headers = {"Bool","Description", "open price", "latest price", "End Date", "Quantity","a", "b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"};
final Object[][] data = {
//+++ 1
{Boolean.TRUE,"Box of Biros", "1.00", "4.99", new Date(), new Integer(50), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.FALSE,"Blue Biro", "0.10", "0.14", new Date(), new Integer(98), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.TRUE,"legal pad", "1.00", "2.49", new Date(), new Integer(100), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.FALSE,"legal
{Boolean.TRUE,"legal pad", "1.00", "2.49", new Date(), new Integer(25), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
//+++ 2
/*
{"Boolean.TRUE","Box of Biros", "1.00", "4.99", new Date(), new Integer(50), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.FALSE","Blue Biro", "0.10", "0.14", new Date(), new Integer(98), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.TRUE","legal pad", "1.00", "2.49", new Date(), new Integer(100), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.FALSE","legal pad", "1.00", "2.49", new Date(), new Integer(10), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{"Boolean.TRUE","legal pad", "1.00", "2.49", new Date(), new Integer(25), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
*/
};
JTable ppTable;
JTableHeader tableHeader;
int[] subTableSplit = null;
boolean pageinfoCalculated=false;
int totalNumPages=0;
int prevPageIndex = 0;
int subPageIndex = 0;
int subTableSplitSize = 0;
double tableHeightOnFullPage;
double headerHeight;
double pageWidth, pageHeight;
int fontHeight, fontDesent;
double tableHeight;
double rowHeight;
//-------------------------------------------------------------------------
public void init() {
TableModel dataModel = new AbstractTableModel() {
public int getColumnCount() { return headers.length; }
public int getRowCount() { return data.length;}
public Object getValueAt(int row, int col) {return data[row][col];}
public String getColumnName(int column) {return headers[column];}
public Class getColumnClass(int col) {return getValueAt(0,col).getClass();}
public boolean isCellEditable(int row, int col) {return (col==1);}
public void setValueAt(Object aValue, int row, int column) { data[row][column] = aValue; }
};
ppTable = new JTable(dataModel);
TableColumnModel tableColumnModel = ppTable.getColumnModel();
TableColumn tableColumn = null;
tableColumn = tableColumnModel.getColumn(0);
tableColumn.setMinWidth(30);
tableColumn.setPreferredWidth(30);
tableColumn = tableColumnModel.getColumn(5);
tableColumn.setMinWidth(100);
tableColumn.setPreferredWidth(100);
JScrollPane scrollpane = new JScrollPane(ppTable);
JButton printButton= new JButton();
scrollpane.setPreferredSize(new Dimension(500, 80));
getContentPane().setLayout(new BorderLayout());
getContentPane().add(BorderLayout.CENTER,scrollpane);
printButton.setText("print me!");
getContentPane().add(BorderLayout.SOUTH,printButton);
// for faster printing turn double buffering off
RepaintManager.currentManager(this).setDoubleBufferingEnabled(false);
printButton.addActionListener( new ActionListener(){
public void actionPerformed(ActionEvent evt) {
PrinterJob pj=PrinterJob.getPrinterJob();
pj.setPrintable( SalesReport.this );
if( pj.printDialog() ){
try{
pj.print();
}catch (Exception PrintException) {}
}
}
});
setVisible(true);
}
//-------------------------------------------------------------------------
public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
Graphics2D g2 = (Graphics2D)g;
if( ! pageinfoCalculated ) {
getPageInfo(g, pageFormat);
}
g2.setColor(Color.black);
if( pageIndex >= totalNumPages ) {
return NO_SUCH_PAGE;
}
if ( prevPageIndex != pageIndex ) {
subPageIndex++;
if( subPageIndex == subTableSplitSize - 1 ) {
subPageIndex=0;
}
}
g2.translate( pageFormat.getImageableX(), pageFormat.getImageableY() );
int rowIndex = pageIndex / (subTableSplitSize - 1);
printTablePart( g2, pageFormat, rowIndex, subPageIndex );
prevPageIndex= pageIndex;
return Printable.PAGE_EXISTS;
}
//-------------------------------------------------------------------------
void getPageInfo(Graphics g, PageFormat pageFormat) {
subTableSplit = null;
subTableSplitSize = 0;
subPageIndex = 0;
prevPageIndex = 0;
fontHeight=g.getFontMetrics().getHeight();
fontDesent=g.getFontMetrics().getDescent();
tableHeader = ppTable.getTableHeader();
double headerWidth = tableHeader.getWidth();
headerHeight = tableHeader.getHeight() + ppTable.getRowMargin();
pageHeight = pageFormat.getImageableHeight();
pageWidth = pageFormat.getImageableWidth();
double tableWidth = ppTable.getColumnModel().getTotalColumnWidth();
tableHeight = ppTable.getHeight();
rowHeight = ppTable.getRowHeight() + ppTable.getRowMargin();
tableHeightOnFullPage = (int)(pageHeight - headerHeight - (fontHeight*2));
tableHeightOnFullPage = (tableHeightOnFullPage / rowHeight) * rowHeight;
TableColumnModel tableColumnModel = tableHeader.getColumnModel();
int columns = tableColumnModel.getColumnCount();
int columnMargin = tableColumnModel.getColumnMargin();
int[] temp = new int[columns];
int columnIndex = 0;
temp[0] = 0;
int columnWidth;
int length = 0;
subTableSplitSize = 0;
while ( columnIndex < columns ) {
columnWidth = tableColumnModel.getColumn(columnIndex).getWidth();
if ( (length + columnWidth + columnMargin) > pageWidth ) {
temp[subTableSplitSize+1] = temp[subTableSplitSize] + length;
length = columnWidth;
subTableSplitSize++;
}
else {
length += (columnWidth + columnMargin);
}
columnIndex++;
}
if ( length > 0 ) { // if are more columns left, part page
temp[subTableSplitSize+1] = temp[subTableSplitSize] + length;
subTableSplitSize++;
}
subTableSplitSize++;
subTableSplit = new int[subTableSplitSize];
for ( int i=0; i < subTableSplitSize; i++ ) {
subTableSplit[i]= temp[i];
}
totalNumPages = (int)( tableHeight / tableHeightOnFullPage );
if ( (tableHeight % tableHeightOnFullPage) >= rowHeight ) { // at least 1 more row left
totalNumPages++;
}
totalNumPages *= (subTableSplitSize-1);
pageinfoCalculated = true;
}
//-------------------------------------------------------------------------
void printTablePart(Graphics2D g2, PageFormat pageFormat, int rowIndex, int columnIndex) {
String pageNumber = null;
pageNumber = "Page: "+(rowIndex+1);
if ( subTableSplitSize > 1 ) {
pageNumber += "-" + (columnIndex+1);
}
int pageLeft = subTableSplit[columnIndex];
int pageRight = subTableSplit[columnIndex + 1];
int pageWidth = pageRight-pageLeft;
// page number message (pageWidth doit etre calcule sur la page et non sur les colonnes imprimables)
g2.setFont(new Font("Dialog",Font.PLAIN,9));
g2.drawString(pageNumber, 0 /*pageWidth/2-35*/, (int)(pageHeight - fontHeight));
double clipHeight = Math.min(tableHeightOnFullPage, tableHeight - rowIndex*tableHeightOnFullPage);
g2.translate(-subTableSplit[columnIndex], 0);
g2.setClip(pageLeft ,0, pageWidth, (int)headerHeight);
tableHeader.paint(g2); // draw the table's header on every page
g2.translate(0, headerHeight);
g2.translate(0, -tableHeightOnFullPage*rowIndex);
// cut table image and draw on the page
g2.setClip(pageLeft, (int)tableHeightOnFullPage*rowIndex, pageWidth, (int)clipHeight);
ppTable.paint(g2);
double pageTop = tableHeightOnFullPage*rowIndex - headerHeight;
// double pageBottom = pageTop + clipHeight + headerHeight;
g2.drawRect(pageLeft, (int)pageTop, pageWidth, (int)(clipHeight+ headerHeight));
}
//-------------------------------------------------------------------------
}
(Review ID: 95323)
======================================================================
Name: krT82822 Date: 10/07/99
Add a new JRadioButton created with the default constructor
to a panel and then print the panel. The following code is called
by my print action listener on the my Screen which extends
JPanel.
public int print(Graphics graphics, PageFormat pf, int pageIndex) {
if (pageIndex != 0) return Printable.NO_SUCH_PAGE;
Graphics2D g2 = (Graphics2D)graphics;
g2.translate(pf.getImageableX(), pf.getImageableY());
paint (g2);
return Printable.PAGE_EXISTS;
}
---------------------------
output:
Exception occurred during event dispatching:
java.lang.IllegalArgumentException: Zero length string passed to TextLayout cons
tructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:337)
at sun.java2d.PathGraphics.drawString(PathGraphics.java:426)
at javax.swing.plaf.basic.BasicGraphicsUtils.drawString(Compiled Code)
at javax.swing.plaf.basic.BasicRadioButtonUI.paint(BasicRadioButtonUI.ja
va:162)
at javax.swing.plaf.ComponentUI.update(Compiled Code)
at javax.swing.JComponent.paintComponent(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.JComponent.paintChildren(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at ClientInfrastructure.Screen.Screen.print(Screen.java:100)
at sun.java2d.RasterPrinterJob.printPage(Compiled Code)
at sun.java2d.RasterPrinterJob.print(Compiled Code)
at Framework.Actions.PrintAction.actionPerformed(PrintAction.java:25)
at javax.swing.AbstractButton.fireActionPerformed(Compiled Code)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1101)
at javax.swing.DefaultButtonModel.fireActionPerformed(Compiled Code)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250
)
at javax.swing.AbstractButton.doClick(AbstractButton.java:226)
at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseRelease
d(BasicMenuItemUI.java:674)
at java.awt.Component.processMouseEvent(Compiled Code)
at java.awt.Component.processEvent(Compiled Code)
at java.awt.Container.processEvent(Compiled Code)
at java.awt.Component.dispatchEventImpl(Compiled Code)
at java.awt.Container.dispatchEventImpl(Compiled Code)
at java.awt.Component.dispatchEvent(Compiled Code)
at java.awt.LightweightDispatcher.retargetMouseEvent(Compiled Code)
at java.awt.LightweightDispatcher.processMouseEvent(Compiled Code)
at java.awt.LightweightDispatcher.dispatchEvent(Compiled Code)
at java.awt.Container.dispatchEventImpl(Compiled Code)
at java.awt.Window.dispatchEventImpl(Compiled Code)
at java.awt.Component.dispatchEvent(Compiled Code)
at java.awt.EventQueue.dispatchEvent(Compiled Code)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
(Review ID: 96248)
======================================================================
Name: dbT83986 Date: 01/11/99
I nead to print child-components(like JCheckBoxs) that have no parent,
because they are renderer-components in a container, something like
JTable. The problem is that I am getting an Exception when they are not
attached to a parent-container, the Exception occures in a
drawString(...) method in one of all that Graphics implementations in
the sun package.
I didn't understand in which Graphics-Class it really relays,
here is the Exception:
java.lang.IllegalArgumentException: Zero length string passed to
TextLayout constructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:337)
at sun.java2d.PeekGraphics.drawString(PeekGraphics.java:845)
at
javax.swing.plaf.basic.BasicGraphicsUtils.drawString(BasicGraphicsUtils.java:230)
at
javax.swing.plaf.metal.MetalRadioButtonUI.paint(MetalRadioButtonUI.java:175)
at javax.swing.plaf.ComponentUI.update(ComponentUI.java:43)
at javax.swing.JComponent.paintComponent(JComponent.java:324)
at javax.swing.JComponent.paint(JComponent.java:547)
at printbutton.paint(printbutton.java:36)
at printbutton.print(printbutton.java:51)
at
sun.java2d.RasterPrinterJob.printPage(RasterPrinterJob.java:486)
at sun.java2d.RasterPrinterJob.print(RasterPrinterJob.java:235)
at printbutton.actionPerformed(printbutton.java:61)
at
javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1066)
at
javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1101)
at
javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
at
javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
at
javax.swing.plaf.basic.BasicButtonListener$ReleasedAction.actionPerformed(BasicButtonList
ener.java:269)
at
javax.swing.JComponent.processKeyBinding(JComponent.java:1537)
at
javax.swing.JComponent.processKeyBindings(JComponent.java:1550)
at javax.swing.JComponent.processKeyEvent(JComponent.java:1466)
at java.awt.Component.processEvent(Component.java:2974)
at java.awt.Container.processEvent(Container.java:987)
at java.awt.Component.dispatchEventImpl(Component.java:2376)
at java.awt.Container.dispatchEventImpl(Container.java:1032)
at java.awt.Component.dispatchEvent(Component.java:2289)
at
java.awt.LightweightDispatcher.processKeyEvent(Container.java:1671)
at
java.awt.LightweightDispatcher.dispatchEvent(Container.java:1655)
at java.awt.Container.dispatchEventImpl(Container.java:1019)
at java.awt.Window.dispatchEventImpl(Window.java:714)
at java.awt.Component.dispatchEvent(Component.java:2289)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:258)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
This Exception will be thrown when I try to print a JCheckBox without a
parent and with it's label == null or "".
First I thought about the TextLayout-Class, the constructor should
accept String-Object with length == 0, but I found the following in the
bug parade:
>Bug Id: 4138921
>Synopsis: TextLayout handling of empty strings
>State: Closed, not a bug
I don't understand why throwing an exception should be correct, but OK,
I cannot change this.
My next step was to take a look to the MetalRadioButtonUI.paint
implementation,
here is the original code:
public synchronized void paint(Graphics g, JComponent c) {
AbstractButton b = (AbstractButton) c;
ButtonModel model = b.getModel();
Dimension size = c.getSize();
int w = size.width;
int h = size.height;
Font f = c.getFont();
g.setFont(f);
FontMetrics fm = g.getFontMetrics();
Rectangle viewRect = new Rectangle(size);
Rectangle iconRect = new Rectangle();
Rectangle textRect = new Rectangle();
Icon altIcon = b.getIcon();
Icon selectedIcon = null;
Icon disabledIcon = null;
String text = SwingUtilities.layoutCompoundLabel(
c, fm, b.getText(), altIcon != null ? altIcon :
getDefaultIcon(),
b.getVerticalAlignment(), b.getHorizontalAlignment(),
b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
viewRect, iconRect, textRect, getDefaultTextIconGap(b)
);
// fill background
if(c.isOpaque()) {
g.setColor(b.getBackground());
g.fillRect(0,0, size.width, size.height);
}
// Paint the radio button
if(altIcon != null) {
if(!model.isEnabled()) {
altIcon = b.getDisabledIcon();
} else if(model.isPressed() && model.isArmed()) {
altIcon = b.getPressedIcon();
if(altIcon == null) {
// Use selected icon
altIcon = b.getSelectedIcon();
}
} else if(model.isSelected()) {
if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverSelectedIcon();
if (altIcon == null) {
altIcon = (Icon) b.getSelectedIcon();
}
}
else {
altIcon = (Icon) b.getSelectedIcon();
}
} else if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverIcon();
}
if(altIcon == null) {
altIcon = b.getIcon();
}
altIcon.paintIcon(c, g, iconRect.x, iconRect.y);
} else {
getDefaultIcon().paintIcon(c, g, iconRect.x, iconRect.y);
}
// Draw the Text
if(text != null) {
if(model.isEnabled()) {
// *** paint the text normally
g.setColor(b.getForeground());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x, textRect.y +
fm.getAscent());
} else {
// *** paint the text disabled
g.setColor(b.getBackground().darker());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x,
textRect.y +
fm.getAscent());
}
if(b.hasFocus() && b.isFocusPainted() &&
textRect.width > 0 && textRect.height > 0 ) {
paintFocus(g,textRect,size);
}
}
}
I would change it like this:
public synchronized void paint(Graphics g, JComponent c) {
AbstractButton b = (AbstractButton) c;
ButtonModel model = b.getModel();
Dimension size = c.getSize();
int w = size.width;
int h = size.height;
Font f = c.getFont();
g.setFont(f);
FontMetrics fm = g.getFontMetrics();
Rectangle viewRect = new Rectangle(size);
Rectangle iconRect = new Rectangle();
Rectangle textRect = new Rectangle();
Icon altIcon = b.getIcon();
Icon selectedIcon = null;
Icon disabledIcon = null;
String text = SwingUtilities.layoutCompoundLabel(
c, fm, b.getText(), altIcon != null ? altIcon :
getDefaultIcon(),
b.getVerticalAlignment(), b.getHorizontalAlignment(),
b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
viewRect, iconRect, textRect, getDefaultTextIconGap(b)
);
// fill background
if(c.isOpaque()) {
g.setColor(b.getBackground());
g.fillRect(0,0, size.width, size.height);
}
// Paint the radio button
if(altIcon != null) {
if(!model.isEnabled()) {
altIcon = b.getDisabledIcon();
} else if(model.isPressed() && model.isArmed()) {
altIcon = b.getPressedIcon();
if(altIcon == null) {
// Use selected icon
altIcon = b.getSelectedIcon();
}
} else if(model.isSelected()) {
if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverSelectedIcon();
if (altIcon == null) {
altIcon = (Icon) b.getSelectedIcon();
}
}
else {
altIcon = (Icon) b.getSelectedIcon();
}
} else if(b.isRolloverEnabled() && model.isRollover()) {
altIcon = (Icon) b.getRolloverIcon();
}
if(altIcon == null) {
altIcon = b.getIcon();
}
altIcon.paintIcon(c, g, iconRect.x, iconRect.y);
} else {
getDefaultIcon().paintIcon(c, g, iconRect.x, iconRect.y);
}
// Draw the Text
// PO:
// PATCH:
// Provisorisch !!!!
// if(text != null) {
if(text.length() > 0) {
if(model.isEnabled()) {
// *** paint the text normally
g.setColor(b.getForeground());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x, textRect.y +
fm.getAscent());
} else {
// *** paint the text disabled
g.setColor(b.getBackground().darker());
BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
textRect.x,
textRect.y +
fm.getAscent());
}
if(b.hasFocus() && b.isFocusPainted() && textRect.width > 0
&& textRect.height > 0 ) {
paintFocus(g,textRect,size);
}
}
}
The test if the variable text is not null, is obsolate, because the call
to
SwingUtilities.layoutCompoundLabel(...) at the beginning of the method
ensures it!
I would only optimize the method and avoid a call to drawString if there
is no text to
draw. And this solves also my problem, now components without a parent
assigned can be printed without any exceptions, even if they have an
empty label.
(Review ID: 52430)
======================================================================
Name: dbT83986 Date: 04/15/99
This is not really a bug.
When I tried to print a JTable with some null cells, I got
the following exception.
I do prefer that it just prints nothing with null cells. Null values
are pretty common in RDBMS.
java.lang.IllegalArgumentException: Zero length string passed to TextLayout constructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:337)
at sun.java2d.PathGraphics.drawString(PathGraphics.java:426)
at javax.swing.plaf.basic.BasicGraphicsUtils.drawString(Compiled Code)
at javax.swing.plaf.basic.BasicLabelUI.paintEnabledText(Compiled Code)
at javax.swing.plaf.basic.BasicLabelUI.paint(Compiled Code)
at javax.swing.plaf.ComponentUI.update(Compiled Code)
at javax.swing.JComponent.paintComponent(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at javax.swing.CellRendererPane.paintComponent(Compiled Code)
at javax.swing.plaf.basic.BasicTableUI.paintCell(Compiled Code)
at javax.swing.plaf.basic.BasicTableUI.paintRow(Compiled Code)
at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:676)
at javax.swing.plaf.ComponentUI.update(Compiled Code)
at javax.swing.JComponent.paintComponent(Compiled Code)
at JDBCTable.print(JDBCTable.java:367)
at sun.java2d.RasterPrinterJob.printPage(RasterPrinterJob.java:504)
at sun.java2d.RasterPrinterJob.print(RasterPrinterJob.java:235)
at JDBCTable.doPrint(JDBCTable.java:397)
at JDBCTablePanel$2.run(JDBCTablePanel.java:629)
at java.lang.Thread.run(Thread.java:479)
======================================================================
Name: skT88420 Date: 09/16/99
DESCRIPTION :
I can't print a JTable that contains a Boolean column
(rendered using defaut renderer : probably JCheckBox)
CONFIGURATION :
NT WS 4.0 US + SP5
JDK 1.2.2
RAM : 144Mo
STEPS :
I use the SalesReport.java example advanced printing code i find on JDC
and I add a Boolean column
1) create a policy file named print.jpol that contains :
grant {
permission java.lang.RuntimePermission "queuePrintJob";
};
2) create a html file named SalesReport.html to launch the SalesReport applet
3) compile the code :
javac SalesReport.java
4) run the applet :
\jdk12\bin\appletviewer -J-Djava.security.policy=print.jpol SalesReport.html
5) click on the "print me" button
when you look at the printer window, you see that the document
start printing but stops immediately
and nothing is printing
and no error or information message
To ensure the code works
6) comment the code that is tagged by //+++ 1 in the source
this code contains Boolean data to feed the JTable
in the first column
7) uncomment the code tha is tagged by //+++ 2 in the source
this code contains String data to feed the JTable
in the first column
8) compile as in step 3)
9) run as in step 4)
10)print
all works well
JAVA VERSION :
java version "1.2.2"
HotSpot VM (1.0.1, mixed mode, build g)
java full version "JDK-1.2.2-W"
SOURCE CODE (saved in SalesReport.java) :
// create a policy file print.jpol to launch the applet that should contains :
// grant {
// permission java.lang.RuntimePermission "queuePrintJob";
// };
//
//run with :
// \jdk12\bin\appletviewer -J-Djava.security.policy=print.jpol SalesReport.html
//
//BUG :
// Can't print the JCheckBox
import javax.swing.*;
import javax.swing.table.*;
import java.awt.font.*;
import java.awt.geom.*;
import java.awt.print.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Dimension;
public class SalesReport extends JApplet implements Printable {
final String[] headers = {"Bool","Description", "open price", "latest price", "End Date", "Quantity","a", "b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"};
final Object[][] data = {
//+++ 1
{Boolean.TRUE,"Box of Biros", "1.00", "4.99", new Date(), new Integer(50), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.FALSE,"Blue Biro", "0.10", "0.14", new Date(), new Integer(98), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.TRUE,"legal pad", "1.00", "2.49", new Date(), new Integer(100), "a","b", "c", "d", "e", "f", "g", "h", "i","j","k","l","m","n"},
{Boolean.FALSE,"legal
- duplicates
-
JDK-4273478 Printing a table with empty cells fails
-
- Closed
-
-
JDK-4223328 PeekGraphics.drawString differs fatally from basic Graphics2D
-
- Resolved
-