我想将网格标题和列数据保存在 HashMap 中。
Map<String,List<String>> gridData = new HashMap<String,List<String>>(); // key ->header , value -> list of col
ColumnModel<RiaBean> columnModel = grid.getColumnModel();
for (int colonne = 0; colonne < columnModel.getColumnCount(); colonne++) {
String header= columnModel.getColumnHeader(colonne).toString();
/* missing code
**i have header name how to get the list of values of that header**
*/
gridData.put(header,list<>)
我缺少代码部分我想获取相同标头的所有值的列表
请帮忙。