1

这是怎么回事?

我在我的项目上创建了一个无法检索元素的 jList。我知道 jList 只接受对象,但我正在将字符串添加到我的列表中,因为当我添加“纪律”对象时,我会在我的视图中看到类似“纪律{id=21,name=DisciplineName} ”的内容。所以,我正在添加字符串而不是对象。

以下是我的代码:

ArrayList<Discipline> query = myController.select();
for (Discipline temp : query){
    model.addElement(temp.getNome());
} 

当我在一个元素中获得双击的索引时,我尝试检索我的字符串以进行查询并知道这门学科是什么。但是我遇到了一些错误,看看我已经尝试过的

Object discipline = lista1.get(index); 
// Error: local variable lista1 is accessed from within inner class; needs to be declared final

String nameDiscipline = (String) lista1.get(index);
// Error: local variable lista1 is accessed from within inner class; needs to be declared final

我真的不知道“最终”是什么意思,但是我能做些什么来解决这个问题呢?我想到的一件事是:

我可以添加一个 Discipline 而不是 String,显示给用户 authority.getName() 并检索 Discipline 对象吗?

4

1 回答 1

3

是的,添加 Discipline 对象。一个快速的解决方法是更改​​ Discipline 的 toString 方法,但更好的解决方法是创建一个 ListCellRenderer,以一个漂亮的字符串显示每个 Discipline 的数据。

这是我在我的项目中使用的两个 ListCellRenderer,用于将 JList 中显示的项目从文本更改为 ImageIcon:

private class ImgListCellRenderer extends DefaultListCellRenderer {

  @Override
  public Component getListCellRendererComponent(JList list, Object value,
        int index, boolean isSelected, boolean cellHasFocus) {
     if (value != null) {
        BufferedImage img = ((SimpleTnWrapper) value).getTnImage();

        value = new ImageIcon(img); // *** change value parameter to an ImageIcon 
     }
     return super.getListCellRendererComponent(list, value, index,
           isSelected, cellHasFocus);
  }

}

private class NonImgCellRenderer extends DefaultListCellRenderer {
  @Override
  public Component getListCellRendererComponent(JList list, Object value,
        int index, boolean isSelected, boolean cellHasFocus) {

     // all this does is use the item held by the list, here value
     // to extract a String that I want to display
     if (value != null) {
        SimpleTnWrapper simpleTn = (SimpleTnWrapper) value;
        String displayString = simpleTn.getImgHref().getImgHref();
        displayString = displayString.substring(displayString.lastIndexOf("/") + 1);

        value = displayString;  // change the value parameter to the String ******
     }
     return super.getListCellRendererComponent(list, value, index,
           isSelected, cellHasFocus);
  }      
}

它们是这样声明的:

private ListCellRenderer imgRenderer = new ImgListCellRenderer();
private ListCellRenderer nonImgRenderer = new NonImgCellRenderer();

我就这样使用它们:

  imgList.setCellRenderer(imgRenderer);

DefaultListCellRenderer 非常强大,并且知道如何正确显示 String 或 ImageIcon(因为它基于 JLabel)。

于 2013-06-16T16:27:30.583 回答