検索エンジン機能を備えたアプレットを作成しました。ここでの問題は、最初にキーワードを使用して検索しようとすると、JTable 形式で新しい JFrame を開くと正しく表示されることです。しかし、そのフレームを閉じて検索フォームに別の何かを入力して別の何かを検索すると、最近検索したものだけでなく、以前に検索したものも表示されます。そして水平方向にも、テーブルの列を繰り返し続けます。スクリーンショットは次のとおりです。
最初に Dosa を検索します。
次に、そのフレームを閉じて Idli を検索します。
誰かが私を助けて、どこが間違っているのか教えてもらえますか? これは、データベース アクティビティと検索用のコードです。
search.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
try {
s=field.getText();
Connection con = null;
Class.forName("com.mysql.jdbc.Driver");
con = (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/delikat",
"root", "");
Statement st = (Statement) con.createStatement();
ResultSet rs= (ResultSet) st.executeQuery( "SELECT * FROM delicious where name = '"+s+ "'" );
ResultSetMetaData md = (ResultSetMetaData) rs.getMetaData();
int columns = md.getColumnCount();
for (int i = 1; i <= columns; i++) {
columnNames.addElement( md.getColumnName(i) );
}
while (rs.next()) {
Vector<Object> row = new Vector<Object>(columns);
for (int i = 1; i <= columns; i++) {
row.addElement( rs.getObject(i) );
}
data.addElement( row );
}
rs.close();
st.close();
}
catch(Exception e) {
e.printStackTrace();
}
Vector<Vector<Object>> NULL = null;
if(data==NULL) {
JOptionPane.showMessageDialog(frame, "No Data Found");
}
else {
//Declare a new Frame for the Query Result Display
JFrame tab=new JFrame();
//Add the Data and the Column Names to the Table
JTable table = new JTable(data, columnNames);
//Add Scroll Pane for instances when more data is to be displayed
JScrollPane scrollPane = new JScrollPane( table );
/* Open the Result of the Query in a new Frame, in a Tabular Format with Scroll Pane.
Add all the elements to the Frame and set the specifications of the Frame like
Size, Visibility, etc.
*/
tab.add( scrollPane );
tab.setVisible(true);
tab.setSize(810,100);
}
}
});
この問題を克服するのを手伝ってください。ありがとうございました。