我想顯示與此圖案結果集值:如何填寫2 d陣列動態
Object rowData[][] = { { url , tags , text }, { url , tags , text } };
我的代碼是:
while (res.next()) {
String url = res.getString(1);
String tags = res.getString(2);
String text = res.getString(3);
}
Object rowData[][] = { { "Row1-Column1", "Row1-Column2", "Row1-Column3" },
{ "Row2-Column1", "Row2-Column2", "Row2-Column3" } };
Object columnNames[] = { "URL", "Tag Information", "Text" };
JTable table = new JTable(rowData, columnNames);`
請用'這種風格爲您code'。更可讀。 – Shondeslitch
請問您可以多描述一下您爲什麼通過動態理解。因爲它不夠清楚你想要什麼! – Parth
@Parth如果結果集返回兩個值,那麼數組將會是rowData [] [] = {{url,tags,text},{url,tags,text}},我想在數組「rowData」中添加reslut set值。 }; url,tags,text是我的數據庫顏色名稱 –