私はすべてを検索しましたが、私に役立つ例をまだ見つけていません... JTable の最後の列 (ms アクセス データベースによって入力されます) を、デフォルトでチェックされていないチェックボックスとして表示する必要があります。私がプルしているデータベースには何百ものレコードがありますが、私たちの目的のために、コードとデータベースをより単純なものに変更しました。私がやりたいのは、最後の列をJava GUIにチェックボックスとして表示し、ユーザーがチェックして最後に結果を保存できるようにすることだけです。おそらく JTable はこれを行うための最良の方法ではないでしょうか?
このコードでは、Access データベースに clientEmployee という名前を付け、4 つの列を追加しました。列の最後には「アクティブ」という名前が付けられ、yes/no の値 (アクセスのチェックボックス) が含まれています。
私の任務がもうすぐ終わるので、私を助けてください。ありがとうございました!
This is the main Gui.....
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.sql.SQLException;
public class TheMainGUI extends JFrame {
//Elements of Notes Tab
private JButton buttons5[];
private JLabel labels5[];
private String fldLabel5[] = {"Client","Employee"};
private JPanel p1d;
static String sql;
public TheMainGUI() {
//creates the main tab pane object
JTabbedPane jtp = new JTabbedPane();
//adds tabbed pane to the frame
getContentPane().add(jtp);
//Creats all of the tabs
JPanel jp5 = new JPanel();//checklist tab
//This adds the tabs to the tabbed pane and sets their titles
jtp.addTab("Stakeholders", jp5);
labels5 = new JLabel[2];
buttons5 = new JButton[2];
p1d = new JPanel();
p1d.setLayout(new GridLayout(2,4,5,5));
jp5.setLayout(new FlowLayout());
for(int count=0;count<buttons5.length && count<labels5.length; count++) {
labels5[count] = new JLabel(fldLabel5[count]);
buttons5[count] = new JButton(fldLabel5[count]);
p1d.add(buttons5[count]);
}
buttons5[0].addActionListener(
new ActionListener() {
//Handle JButton event if it is clicked
public void actionPerformed(ActionEvent event) {
sql = "Select * from client";
DatabaseForm.dbFrame();
//setVisible(false);
}
}
);
buttons5[1].addActionListener(
new ActionListener() {
//Handle JButton event if it is clicked
public void actionPerformed(ActionEvent event) {
sql = "Select * employee'";
DatabaseForm.dbFrame();
//setVisible(false);
}
}
);
jp5.add(p1d);
}
//Main method creates GUI
public static void main (String []args){
TheMainGUI frame = new TheMainGUI();
frame.setTitle("Stakeholders");
frame.setSize(400,500);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
This is the database form class........
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import java.sql.*;
import java.util.*;
import javax.swing.*;
import javax.swing.table.*;
import javax.swing.JCheckBox;
public class DatabaseForm extends JFrame{
public ResultSet rs;
public Statement stmt;
public Connection con;
JButton save;
public Checkbox box[];
public DatabaseForm() {
Vector columnNames = new Vector();
Vector data = new Vector();
try {
// connects to database
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con =DriverManager.getConnection("jdbc:odbc:clientEmployee");
//declare statment variable
stmt = con.createStatement();
//declare result set and get query from the main gui
rs = stmt.executeQuery( TheMainGUI.sql );
//declare metadata variable
ResultSetMetaData md = rs.getMetaData();
//set variable colmns to get column count
int columns = md.getColumnCount();
//for loop retreives all column names from the database
for (int i = 1; i <= columns; i++) {
columnNames.addElement( md.getColumnName(i) );
}
while (rs.next()) {
Vector row = new Vector(columns);
//for loop that retreives data from the columns
for (int i = 1; i <= columns; i++) {
row.addElement( rs.getObject(i));
//row.add(box[i]);
}
data.addElement( row );
}
rs.close();
stmt.close();
}
catch(Exception e) {
System.out.println( e );
}
//create JTable
JTable table = new JTable(data, columnNames);
// create scroll feature
JScrollPane scrollPane = new JScrollPane( table );
getContentPane().add( scrollPane );
JPanel buttonPanel = new JPanel();
// add save button
buttonPanel.setLayout(new FlowLayout());
save = new JButton("Save");
buttonPanel.add(save);
getContentPane().add( buttonPanel, BorderLayout.SOUTH );
save.addActionListener(
new ActionListener() {
//Handle JButton event if it is clicked
public void actionPerformed(ActionEvent event) {
setVisible(false);
}
}
);
}
static void dbFrame(){
DatabaseForm frame = new DatabaseForm();
frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
frame.pack();
frame.setTitle("Stakeholder Checklist");
frame.setVisible(true);
frame.setLocation(450,50);
frame.setSize(1000,900);
}
}