java代码将结果集复制到mysql表中

发布于 2024-11-14 13:52:04 字数 86 浏览 2 评论 0原文

在我的java程序中,我想复制javatable数据并将其复制到mysql表中。为此,我选择一个表并选择其中的内容,然后复制。如何将结果集复制到mysql中?

In my java program i want to copy javatable data and copied it in to the mysql table.for that i select one table and select the contents of it then copy.how to copy the result set in to mysql?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开柳相依 2024-11-21 13:52:04

getRowCount() 方法返回行数。
getValueAt(row, col) 返回数据。

int rows = jTable1.getRowCount();
int columns = jTable1.getColumnCount();

for (int row = 0; row < rows; r++) {
   try {
      rs.moveToInsertRow();

      rs.updateInt("id", Integer.parseInt(jTable1.getValueAt(row, 0));
      rs.updateString("name", jTable1.getValueAt(row, 1));
      rs.updateString("phone", jTable1.getValueAt(row, 2));
      .....

      rs.insertRow();
   } catch (SQLException sqle) {
      ...
   }
}

这是默认模型示例。根据您的需要进行调整:

jTable1.setModel(new javax.swing.table.DefaultTableModel(
    new Object [][] {
        {"1", "2", "3"},
        {"4", "5", "6"},
        {"7", "8", "9"},
        {"10", "11", "12"}
    },
    new String [] {
        "Title 1", "Title 2", "Title 3"
    }
) {
    boolean[] canEdit = new boolean [] {
        false, false, false
    };

    public boolean isCellEditable(int rowIndex, int columnIndex) {
        return canEdit [columnIndex];
    }
});

getRowCount() method returns the number of rows.
getValueAt(row, col) returns the data.

int rows = jTable1.getRowCount();
int columns = jTable1.getColumnCount();

for (int row = 0; row < rows; r++) {
   try {
      rs.moveToInsertRow();

      rs.updateInt("id", Integer.parseInt(jTable1.getValueAt(row, 0));
      rs.updateString("name", jTable1.getValueAt(row, 1));
      rs.updateString("phone", jTable1.getValueAt(row, 2));
      .....

      rs.insertRow();
   } catch (SQLException sqle) {
      ...
   }
}

This is a default model sample. Adjust it to your needs:

jTable1.setModel(new javax.swing.table.DefaultTableModel(
    new Object [][] {
        {"1", "2", "3"},
        {"4", "5", "6"},
        {"7", "8", "9"},
        {"10", "11", "12"}
    },
    new String [] {
        "Title 1", "Title 2", "Title 3"
    }
) {
    boolean[] canEdit = new boolean [] {
        false, false, false
    };

    public boolean isCellEditable(int rowIndex, int columnIndex) {
        return canEdit [columnIndex];
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文