jtable如何使用rs2xml

时间:2014-12-28 19:27:39

标签: java swing jtable

我现在是java的新手,我一直在寻找一种将数据库信息放到jtable的有效方法,我听说过rs2xml。我真的想学习这个,因为其他方法让我感到困惑并让我头疼。

有谁知道如何有效地使用它?如果您不介意,可以用简单的代码解释。

提前致谢。

2 个答案:

答案 0 :(得分:4)

    import net.proteanit.sql.DbUtils;


  try {
    st = conn.createStatement();
    st.executeQuery(q);
    ResultSet rs = st.executeQuery(q);
    jTable1.setModel(DbUtils.resultSetToTableModel(rs));
       }
  catch (SQLException ex) {
  JOptionPane.showMessageDialog(null, ex);
   } finally {
     try {
    rs.close();
  } catch (SQLException e) { /* ignore */
  }

  try {
    st.close();
  } catch (SQLException e) { /* ignore */
 }
  }

该样品的使用 video tutorial

答案 1 :(得分:1)

  1. //在此之前,通过添加在项目属性中添加rs2XML.jar // addLibray //选项
  2. private void b2ActionPerformed(java.awt.event.ActionEvent evt) {    
    
               int id = 0;
               String name = "";
               String mobile = "";
               String email = ""; 
               String flat = "";
               String query="";
    
    
               Connection con;
                   try{
                     String query= "select * from apt"
                     con=DBconnect.ConnectDB();//it's a class the connection properties are defined here
                     PreparedStatement ps; 
                     ps = con.prepareStatement(query);
                     ResultSet rs = ps.executeQuery();
                     jTable1.setModel(DbUtils.resultSetToTableModel(rs));
    
    
                        }
    
               }catch(Exception ee){
                   ee.printStackTrace();
               }
    
           }