我需要从for循环内部找到的值才能在循环内部的函数中使用,我无法弄清楚如何执行此操作。我希望实现的是从散列映射中的键中提取值,然后仅在JTable
中绘制时才选择该行(使用ListSelectionListener
)。通过这种方式,我可以避免绘制一百个可以节省大量时间的表格。我也在使用DefaultTableModel
。
这是我的for循环:
tableMaker(model);
for(Map.Entry<String,NumberHolder> entry : entries)
{
//add rows for each entry of the hashmap to the table
double[] v = new double[entry.getValue().singleValues.size()];
int i = 0;
for(Long j : entry.getValue().singleValues)
{
v[i++] = j.doubleValue();
}
//right here I need to take "v"
//and use it in my tableMaker function for that specific row
}
在我的tableMaker
函数中,我创建了我的JTable
并添加了ListSelectionListener
,我希望在选择行时创建直方图并将其添加到我的lowerPanel。这是一些代码。我需要v
以便我可以创建dataSet。
public static void tableMaker(DefaultTableModel m)
{
JPanel lowerPanel = new JPanel();
//create table here
frame.getContentPane().add(lowerPanel, BorderLayout.SOUTH);
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
table.getSelectionModel().addListSelectionListener(
new ListSelectionListener() {
@Override
public void valueChanged(ListSelectionEvent e) {
if (!e.getValueIsAdjusting()) {
JFreeChart chart = ChartFactory.createHistogram(
plotTitle, xaxis, yaxis, dataset, orientation,
show, toolTips, urls);
// lowerPanel.add(chart);
// lowerPanel.revalidate();
}
}
});
}