我有一个应用程序,我想打印一个JTable,但由于它有很多列,我希望用户选择/限制要打印的列,以便它可以放入普通的打印纸。
我正在使用JTable.print()函数进行打印。 (http://java.sun.com/docs/books/tutorial/uiswing/misc/printtable.html) 现在,我的解决方案是使用用户选择的列创建另一个JTable,然后使用数据重新填充表,然后将其发送到打印机。
有更好的方法吗?
答案 0 :(得分:0)
在我回答here时,我通过在打印前隐藏列并在打印后恢复列来解决它:
// get column num from settings
int num = gridSettings.getColumnsOnPage();// first <num> columns of the table will be printed
final TableColumnModel model = table.getColumnModel();
// list of removed columns. After printing we add them back
final List<TableColumn> removed = new ArrayList<TableColumn>();
int columnCount = model.getColumnCount();
// hiding columns which are not used for printing
for(int i = num; i < columnCount; ++i){
TableColumn col = model.getColumn(num);
removed.add(col);
model.removeColumn(col);
}
// printing after GUI will be updated
SwingUtilities.invokeLater(new Runnable() {
public void run() {
// table printing
try {
table.print(PrintMode.FIT_WIDTH, null, null, true, hpset, true); // here can be your printing
} catch (PrinterException e) {
e.printStackTrace();
}
// columns restoring
for(TableColumn col : removed){
model.addColumn(col);
}
}
});
要打印JTable的特定部分,只需更改此代码即可。
答案 1 :(得分:0)
最好的方法:只需将列宽设置为零即可隐藏:)
TableColumn column = table.getColumnModel().getColumn(i);
//backup first
int minWidth=column.getMinWidth();
int width=column.getPreferredWidth();
//to hide:
column.setMinWidth(0);
column.setPreferredWidth(0);
//to show it back:
column.setMinWidth(minWidth);
column.setPreferredWidth(width);