我想從我的MySQL數據庫中讀取數據到數組中,以便我可以在視圖中輸出數據。從MySQL讀取數據到eclipse
到目前爲止我的代碼是:
Class.forName("com.mysql.jdbc.Driver");
Connection con =
DriverManager.getConnection("jdbc:mysql://localhost:3306/database","localhost","root");
PreparedStatement stmt = con.prepareStatement("select * from stock");
ResultSet result = stmt.executeQuery("select * from stock");
ArrayList<int[]> stockNo = new ArrayList<int[]>();
ArrayList<String[]> stockName = new ArrayList<String[]>();
while(result.next()){
stockNo.add(result.getInt(1));
stockName.add(result.getString(2));
}
}
但是我的。新增的方法得到一個錯誤消息說 「的方法在ArrayList類型添加(INT,INT [])不適用爲爭論(int)「。 有誰知道我該如何解決這個問題?是否因爲我沒有定義我的數組的大小?
'ArrayList' - >'ArrayList '? –
gd1