我想在 java swing 中使用组合框作为参数进行分页,以定义将显示的行的数量,我也使用按钮 next、previous、back、last ..
这是代码:
view.getBtnNextPage().addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String c = String.valueOf(view.getComboBox().getSelectedItem());
int a = view.getTable().getRowCount();
int b = (int) Biodata.countBiodatas();
if (c.equals("5")) {
int item = b * a;// 3
int next = item * a;
int akhir = b - a;
refreshTable(Biodata.findBiodataEntries(a + 5 - 5,
a + 5 + 6));
}
}
});