-1
 public LayoutWindow() {
    JLabel lblNewLabel = new JLabel("Receipt No:");

    txtReceiptNo = new JTextField();
    txtReceiptNo.setColumns(10);

    JLabel lblDate = new JLabel("Date:");

    txtDate = new JTextField();
    txtDate.setColumns(10);
    Date date = new Date();
    SimpleDateFormat dateFormate = new SimpleDateFormat("dd-MM-yyyy");
    String newDate = dateFormate.format(date);
    txtDate.setText(newDate);


    JLabel lblProductCode = new JLabel("Product Code");

    txtProductCode = new JTextField();
    txtProductCode.setColumns(10);
    String a = txtProductCode.getText();
    txtProductCode.getDocument().addDocumentListener(new DocumentListener() {
      public void changedUpdate(DocumentEvent e) {
        warn();
      }
      public void removeUpdate(DocumentEvent e) {
        warn();
      }
      public void insertUpdate(DocumentEvent e) {
        warn();
      }

      public void warn() {
         System.out.println("changed....");
         txtQuantity.setText("1");


      }
    });

    JLabel lblQuantity = new JLabel("Quantity");

    txtQuantity = new JTextField();
    txtQuantity.setColumns(10);

    JLabel lblPrice = new JLabel("Price");

    txtPrice = new JTextField();
    txtPrice.setColumns(10);

    JLabel lblNetAmount = new JLabel("Net Amount");

    txtNetAmount = new JTextField();
    txtNetAmount.setColumns(10);

    JLabel lblDiscount = new JLabel("Discount");

    txtDiscount = new JTextField();
    txtDiscount.setColumns(10);

    JLabel lblTotal = new JLabel("Total");

    txtTotal = new JTextField();
    txtTotal.setColumns(10);



    System.out.println(a);
    String[] columnNames = {"Product Code","Description","Price","Quantity","Total"};
    Object[][] data = {{a, "bb","cc", new Integer(5), new Boolean(false)},};

    final JTable table = new JTable(data, columnNames);

    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    table.setFillsViewportHeight(true);

    if (DEBUG) {
        table.addMouseListener(new MouseAdapter() {
            public void mouseClicked(MouseEvent e) {
                printDebugData(table);
            }
        });
    }

    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);

我有一个类似上面的代码。我想将数据插入到来自 Jtextfield 的 Jtable 中。而且我还想清除 JtextField 数据onFocus。我怎样才能做到这一点?请尽快帮助我...谢谢...

4

1 回答 1

3

JTable table = new JTable(data, columnNames)构造一个DefaultTableModel

DefaultTableModel您可以在usingDefaultTableModel#addRow(Object[])或中添加新行DefaultTableModel#addRow(Vector)

在您的示例下,这将需要类似((DefaultTableModel)table.getModel).addRow(...)

要设置已经存在的行的值,可以使用该TableModel#setValueAt(row, col)方法。

这将是一个简单的 as table.getModel().setValueAt(row, col),其中 row 和 col 是int值。

您可能需要将行索引从视图转换为模型,JTable#convertRowIndexToModel(int)并将列索引转换为模型Table#convertColumnIndexToModel(int),以防行已排序或用户移动列

How to use Tables中涵盖了很多内容,非常值得您花时间

要清除获得焦点的文本字段,您需要一个FocusListener并将其附加到您要启用的每个字段。

就像是...

public class ClearOnFocusGained implements FocusListener {
    public void focusGained(FocusEvent e) {
        // This is an assumption...
        ((JTextComponent)e.getComponent()).setText(null);
    }
    public void focusLost(FocusEvent e) {}
}

然后您只需创建一个侦听器实例并应用于您的每个字段

ClearOnFocusGained clearListener = new ClearOnFocusGained();
txtTotal.addFocusListener(clearListener);
于 2012-10-19T04:45:36.417 回答