我知道这是一个常见的问题,因为到处都有视频,但它们让我更接近但不是目标。
根据推荐的做法,我已将文件打包成: - 边界(GUI 类) - 实体(getter、setter、populateJList()) - 数据库(db 访问对象)
我希望通过以下方法@Entity 填充位于@boundary 的JList。我怎么能这样做,明确的?
public void populateJList()
{
DefaultListModel m = new DefaultListModel();
ResultSet rs = null;
DataAccessObject db = new DataAccessObject();
db.setUp("customer");
String dbQuery = "SELECT food_Category FROM store_owner";
rs = db.readRequest(dbQuery);
try
{
while (rs.next())
{
food_Category = rs.getString("food_Category");
m.addElement(food_Category);
}
}
catch (Exception e)
{
e.printStackTrace();
}
db.terminate();
//return success;
}