程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 用Swing實現數據表格功能

用Swing實現數據表格功能

編輯:關於JSP

最近有個項目是delphi來做的,之中有很多地方要用到數據表格。這種功能在delphi和vb中能很方便的做出來,java沒

有提供這項功能,但是可以用Jtable 來實現,不過就是麻煩了點:)。

下面是我用applet實現的一個簡單數據表格程序代碼。
package com.applet.cat10;

import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import com.util.*;
import java.util.*;
import javax.swing.table.*;
import java.sql.*;

/**
* Title: Cat工程
* Description: BCat
* Copyright: Copyright (c) 2001
* Company: smartcomm
* @author daniel
* @version 1.0
*/

public class TestDatabase extends JApplet {
boolean isStandalone = false;
JButton jButton1 = new JButton(); //觸發時間查詢按扭
Database db=new Database();
JTable table1 = new JTable();
JScrollPane scroll = new JScrollPane();
JTextField text1 = new JTextField();

DefaultTableModel dtm; //定義表格的數據模型
Vector vCdata=null; //定義表的列名(以vector存儲)
ResultSet rsRow=null; //查詢表的數據集合

/**Construct the applet*/
public TestDatabase() {
}
/**Initialize the applet*/
public void init() {
try {
jbInit();
userInit(); //自定義的操作都在次方法中
}
catch(Exception e) {
e.printStackTrace();
}
}
/**Component initialization*/
private void jbInit() throws Exception {
jButton1.setText("jButton1");
jButton1.setBounds(new Rectangle(26, 225, 79, 29));
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(ActionEvent e) {
jButton1_actionPerformed(e);
}
});
this.setSize(new Dimension(664, 300));
this.getContentPane().setLayout(null);
scroll.setBounds(new Rectangle(12, 24, 644, 189));
text1.setBounds(new Rectangle(16, 271, 365, 22));
this.getContentPane().add(scroll, null);
this.getContentPane().add(jButton1, null);
// this.getContentPane().add(text1, null);
scroll.getViewport().add(table1, null);
}

/*userInit() 數據表格的初始化*/
public void userInit()
{
db.connect(); //數據庫連接
vCdata=db.getFieldNames("T_REGISTRATION"); //得出列名(vector存儲)
dtm=new DefaultTableModel(); //定義模式
table1.setModel(dtm); //設定表模式

/**for 列出標題爛**/
for(int i=0;i<vCdata.size();i++)
dtm.addColumn((String)vCdata.elementAt(i));

rsRow=db.executeQueryTable("T_REGISTRATION"); //得出數據集合

}

/**Start the applet*/
public void start() {
}
/**Stop the applet*/
public void stop() {
}

/**Destroy the applet*/
public void destroy() {
}
//static initializer for setting look & feel
static {
try {
//UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
//UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
}
catch(Exception e) {
}
}

//觸發查詢事件
void jButton1_actionPerformed(ActionEvent e)
{

try
{

while(rsRow.next())
{
Vector vRdata=new Vector();
for(int i=0;i<vCdata.size();i++)
{
vRdata.addElement(rsRow.getString((String)vCdata.elementAt(i))); //列舉列數據(vector存

儲)
}
dtm.addRow(vRdata); //向表中添家數據
}


db.close();
}catch(Exception ei)
{
System.out.println("error at jButton1_actionPerformed! in TestDatabase" + ei.toString());
}

}
}

這個程序簡單的實現了數據表格功能,初始化狀態是數據表格只有標題,當click 按扭顯示數據。

1。在userInit()方法中做了數據表格的初始化,關鍵的方法:
建立表格模型: DefaultTableModel dtm=new DefaultTableModel(),
設定表模型:table1.setModel(dtm)
設定表格標題:(一切操作可以在模型上做) dtm.addColumn(Vector arg),arg是表的標題,也就是field名字數組
得出數據的結果集合:rsRow=db.executeQueryTable("T_REGISTRATION"),這就是一般的數據查詢結果哦

2。在 void jButton1_actionPerformed(ActionEvent e)中顯示數據,關鍵方法:
以行的方式加入數據:dtm.addRow(Vector arg)。

3。Jtable有很多的實例化方式,這裡采用的是DefaultTableModel模型,對表的操作都可以建立在模型上。

4。以後如果更改表中的數據的話可以在模型上修改如:
更新3行4列的數據:dtm.setValueAt("bigCat",3,4),也可以table1.setValueAt("bigCat",3,4).
得出3行4列數據:Object rs=dtm.getValueAt(3,4);
刪除第3行數據:dtm.removeRow(3)


具體數據表格的展現方式大家可以自己修改設定


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved