0
我試圖修改vaadin地址簿應用程序到一個稍微不同的只有字段名稱更改。但我不知道如何用特定的值填充它,而不是像在vaadin教程示例中那樣僞隨機填充它。 這是我的代碼。如何用特定值填充表而不是僞隨機?
private static IndexedContainer createDummyDatasource() {
IndexedContainer ic = new IndexedContainer();
for (String p : fieldNames) {
ic.addContainerProperty(p, String.class, "");
}
String[] cnumber = { "1", "2", "3" };
String[] ctitle = { "a", "b", "c" };
String[] faculty = { "xxx" };
for (int i = 0; i < 3; i++) {
Object id = ic.addItem();
ic.getContainerProperty(id, CNUMBER).setValue(cnumber[(int) (cnumber.length * Math.random())]);
ic.getContainerProperty(id, CTITLE).setValue(ctitle[(int) (ctitle.length * Math.random())]);
ic.getContainerProperty(id, FACULTY).setValue(faculty[(int) (faculty.length * Math.random())]);
}
return ic;
}
請幫忙.. !!
謝謝我會研究它 – 2015-01-28 02:56:24