我已经完成了电影票预订代码,现在我已经在JList
停留了。
如何在JList
中添加数据?
这是一个代码...
JList listTime = new JList();
listTime.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
listTime.setFont(new Font("Times New Roman", Font.PLAIN, 25));
listTime.setBounds(329, 311, 200, 50);
frame.getContentPane().add(listTime);
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/suhel","root","Suhel786");
Statement stmt = con.createStatement();
String sql="select distinct time from tbmovie where movie='"+select_mov+"'";
ResultSet rs = stmt.executeQuery(sql);
while(rs.next())
{
listTime.add(rs.getString("time"));//here is the Error
}
}
catch(Exception e1){
System.out.print(e1);
}
我已从数据库中检索数据-只需在列表中添加数据即可。
答案 0 :(得分:1)
首先,使用ListModel初始化JList,例如DefaultListModel,然后使用其方法修改ListModel。另外,可以将数据库中的项目加载到数组中,然后在可能的情况下使用接受数组的构造函数创建一个JList。