直播中
有提供這項(xiàng)功能,但是可以用Jtable 來(lái)實(shí)現(xiàn),不過(guò)就是麻煩了點(diǎn):)。
下面是我用applet實(shí)現(xiàn)的一個(gè)簡(jiǎn)單數(shù)據(jù)表格程序代碼。
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(); //觸發(fā)時(shí)間查詢按扭
Database db=new Database();
JTable table1 = new JTable();
JScrollPane scroll = new JScrollPane();
JTextField text1 = new JTextField();
DefaultTableModel dtm; //定義表格的數(shù)據(jù)模型
Vector vCdata=null; //定義表的列名(以vector存儲(chǔ))
ResultSet rsRow=null; //查詢表的數(shù)據(jù)集合
/**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() 數(shù)據(jù)表格的初始化*/
public void userInit()
{
db.connect(); //數(shù)據(jù)庫(kù)連接
vCdata=db.getFieldNames("T_REGISTRATION"); //得出列名(vector存儲(chǔ))
dtm=new DefaultTableModel(); //定義模式
table1.setModel(dtm); //設(shè)定表模式
/**for 列出標(biāo)題爛**/
for(int i=0;i<vCdata.size();i++)
dtm.addColumn((String)vCdata.elementAt(i));
rsRow=db.executeQueryTable("T_REGISTRATION"); //得出數(shù)據(jù)集合
}
/**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) {
}
}
//觸發(fā)查詢事件
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))); //列舉列數(shù)據(jù)(vector存
儲(chǔ))
}
dtm.addRow(vRdata); //向表中添家數(shù)據(jù)
}
db.close();
}catch(Exception ei)
{
System.out.println("error at jButton1_actionPerformed! in TestDatabase" + ei.toString());
}
}
}
這個(gè)程序簡(jiǎn)單的實(shí)現(xiàn)了數(shù)據(jù)表格功能,初始化狀態(tài)是數(shù)據(jù)表格只有標(biāo)題,當(dāng)click 按扭顯示數(shù)據(jù)。
1。在userInit()方法中做了數(shù)據(jù)表格的初始化,關(guān)鍵的方法:
建立表格模型: DefaultTableModel dtm=new DefaultTableModel(),
設(shè)定表模型:table1.setModel(dtm)
設(shè)定表格標(biāo)題:(一切操作可以在模型上做) dtm.addColumn(Vector arg),arg是表的標(biāo)題,也就是field名字?jǐn)?shù)組
得出數(shù)據(jù)的結(jié)果集合:rsRow=db.executeQueryTable("T_REGISTRATION"),這就是一般的數(shù)據(jù)查詢結(jié)果哦
2。在 void jButton1_actionPerformed(ActionEvent e)中顯示數(shù)據(jù),關(guān)鍵方法:
以行的方式加入數(shù)據(jù):dtm.addRow(Vector arg)。
3。Jtable有很多的實(shí)例化方式,這里采用的是DefaultTableModel模型,對(duì)表的操作都可以建立在模型上。
4。以后如果更改表中的數(shù)據(jù)的話可以在模型上修改如:
更新3行4列的數(shù)據(jù):dtm.setValueAt("bigCat",3,4),也可以table1.setValueAt("bigCat",3,4).
得出3行4列數(shù)據(jù):Object rs=dtm.getValueAt(3,4);
刪除第3行數(shù)據(jù):dtm.removeRow(3)
具體數(shù)據(jù)表格的展現(xiàn)方式大家可以自己修改設(shè)定。