Swing JTable如何更新呢?并填充它?

发布于 2024-10-21 06:33:16 字数 621 浏览 1 评论 0原文

嗯,我有 2 个疑问 a) 从玩家中选择* b)从idplayer=10的玩家中选择*;

现在我想知道什么是最容易填写的表格,首先我创建了我的表格 JTable mytable = new JTable(10,7); // 好的.. // 因为在java中没有gridview或datagridview,我们必须使用JTable吗? 那么我该如何填写呢?必须有一个 JButtons 来填充所有玩家 另一个用查询 B 填充它。我如何更新它?

我再说一遍,我想知道最简单的形式。 谢谢 这是我的代码

public ResultSet buscarfutbolistas() {
    ResultSet datos = null;
    String cadena="select * from futbolistas";
    try {
        Statement stm = conexion.getConnection().createStatement();
        datos = stm.executeQuery(cadena);
    } catch(Exception ex) {
        System.out.println(ex);
    }
    return datos; 
 }

Well I have 2 queries
a) select * from players
b)select * from players where idplayer=10;

Now I would to know what is the form easiest for to fill it first I created my table
JTable mytable = new JTable(10,7); // ok..
// as in java there is not gridview or datagridview do we have to use JTable?
well how do i fill it? have to JButtons one for fill it with all players
and another for fill it with query B. how do i update it?

I repeat I would to know the form easiest..
thanks
this is my code

public ResultSet buscarfutbolistas() {
    ResultSet datos = null;
    String cadena="select * from futbolistas";
    try {
        Statement stm = conexion.getConnection().createStatement();
        datos = stm.executeQuery(cadena);
    } catch(Exception ex) {
        System.out.println(ex);
    }
    return datos; 
 }

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

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

发布评论

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

评论(2

那片花海 2024-10-28 06:33:16

数据库中的表可能会帮助您。

Table From Database might help you.

梦年海沫深 2024-10-28 06:33:16

您必须创建一个 TableModel。
请参阅此处了解更多信息和完整教程:

http://download.oracle.com/javase/tutorial/ uiswing/components/table.html

You have to create a TableModel.
See here for more information and a complete tutorial:

http://download.oracle.com/javase/tutorial/uiswing/components/table.html

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