我可以打印完整的JTable,但实际上我希望打印JTable的特定部分,例如,从第10行打印到第50行,从第70列打印到第150列。该怎么做呢?
发布于 2013-12-26 18:31:38
我也遇到过这个问题。解决方法:打印前隐藏列,打印后恢复列:
// 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的特定部分,只需稍微修改一下代码即可。
https://stackoverflow.com/questions/15003159
复制相似问题