好的,所以我是新手,我一直在寻找两周的时间来尝试将SQL结果集打印到由JavaFX Scene Builder制作的TableView。我可以使用System.out.println打印我的结果集并且数据是正确的,但是当我尝试将其放入List时,我的tableview显示一列为0,另一列为空。我正在尝试打印List(println),但是我得到了对象指针(?)而不是数据,因此我无法看到我是否从ResultSet传递到List错误。
任何帮助都会受到赞赏......我想理解这个概念,而不只是得到答案。
这是我的控制器代码:
public class TesterUIController implements Initializable {
@FXML
private TableView<dataClass> Table;
@FXML
private Button TestButton;
@FXML
private TableColumn<dataClass, Integer> colKey;
@FXML
private TableColumn<dataClass, String> colSalesNo;
public static void main (String[] args) {
System.out.println("Main has run");
}
/**
*
* @param fxmlFileLocation
* @param resources
*/
@Override
public void initialize(URL fxmlFileLocation, ResourceBundle resources) {
TestButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Button Pressed");
colKey.setCellValueFactory(new PropertyValueFactory<dataClass, Integer>("Key"));
colSalesNo.setCellValueFactory(new PropertyValueFactory<dataClass, String>("SalesNo"));
Table.getItems().setAll(gobbledyGook());
}
} );
}
/*
* dataClass is a (sub)class representing the data for TableView "Table"
*/
public class dataClass {
private IntegerProperty Key;
public void setKey (int value) {KeyProperty().set(value);}
public int getKey() {
return KeyProperty().get();
}
public IntegerProperty KeyProperty() {
if (Key == null) Key = new SimpleIntegerProperty(this, "Key");
return Key;
}
private StringProperty SalesNo;
public void setSalesNo(String value) {
SalesNoProperty().set(value);
}
public String getSalesNo() {
return SalesNoProperty().get();
}
public StringProperty SalesNoProperty() {
if (SalesNo == null) SalesNo = new SimpleStringProperty(this, "SalesNo");
return SalesNo;
}
}
private List<dataClass> gobbledyGook() { //ObservableList<dataClass> gobbledyGook() { // ResultSet getData() {
Connection conn;
String dbDriver;
Statement st;
ResultSet rs;// = null;
List ll = new LinkedList();
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
dbDriver = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};"
+ "DBQ=Inventario.mdb;";
conn = DriverManager.getConnection(dbDriver, "", "");
st = conn.createStatement();
String getSalesNumber = "SELECT * FROM SalesNumber " // TOP 1 * FROM ...
+ "ORDER BY SalesNumber.Key DESC";// LIMIT 1";
rs = st.executeQuery(getSalesNumber);
while (rs.next()) {
int Key = rs.getInt(1);
double saleNo = rs.getDouble(2);
NumberFormat formatter = new DecimalFormat("###########");
String SalesNo = formatter.format(saleNo);
System.out.println(Key + ", " + SalesNo); //key + ", " + saleNo);
dataClass roww = new dataClass();
ll.add(roww);
}
}
catch (ClassNotFoundException | SQLException ex) {
Logger.getLogger(TesterUIController.class.getName()).log(Level.SEVERE, null, ex);
}
return ll;
}
}
答案 0 :(得分:5)
您的问题
您的表格为空,因为您从未初始化您创建的dataClass roww
的值。请尝试使用以下代码:
dataClass roww = new dataClass();
roww.setKey(Key);
roww.setSalesNo(SalesNo);
ll.add(roww);
更好的想法可能是为dataClass提供一个构造函数,它将Key
和SalesNo
作为参数 - 这样就可以保证dataClass
实例被正确初始化。
ll.add(
new dataClass(
Key,
SalesNo
)
);
参考解决方案
这是指向某些sample code的链接,用于通过JDBC从JavaFX访问数据库并使用结果填充ListView
。代码是为StackOverflow问题创建的:javafx connection to mysql。
该代码与您的问题中的代码类似,很容易理解(这就是我链接它的原因),但是存在一个缺陷,即数据库查找是在JavaFX应用程序线程上完成的。这意味着在发生数据库查找时冻结应用程序UI。这不是最佳的。为了解决这个问题,我为stackoverflow问题创建了另一个background thread based database access sample:JavaFX - Background Thread for SQL Query。此解决方案最好使用Task
在后台线程上执行查询。
<强>除了强>
我建议关注Java naming conventions,因为它会让您的程序更容易被其他开发者理解。