2015-06-11 59 views
0

我在添加一個ImageIcon到我的JTable中的JLabel時遇到了問題。到目前爲止,我完全可以根據單元格中數據的值來操作單元格,但每當我嘗試添加圖像時,我都只能看到文本。JTableCell中的ImageIcon

表格繪製

class DeviceTableModel extends AbstractTableModel { 
    private Object[][] data = Globals.getArray(); 
    private String[] columnNames = {"Name","Status","Description"}; 


    @Override 
    public int getRowCount() { 
     return data.length; 
    } 

    @Override 
    public int getColumnCount() { 
     return columnNames.length; 
    } 

    @Override 
    public Object getValueAt(int rowIndex, int columnIndex) { 
     return data[rowIndex][columnIndex]; 
    } 

    @Override 
    public String getColumnName(int col) { 
     return columnNames[col]; 
    } 

    @Override 
    public Class getColumnClass(int c) { 
     return getValueAt(0,c).getClass(); 
    } 

    @Override 
    public void setValueAt(Object value, int row, int col) { 
     data[row][col] = value; 
     fireTableCellUpdated(row,col); 
    } 

} 

這是我用我的JTable中渲染。

@Override 
public Component prepareRenderer(TableCellRenderer renderer, int row, int col) { 
    JLabel comp = (JLabel)super.prepareRenderer(renderer, row, col); 
    Object value = getModel().getValueAt(row, col); 

    if (value.equals("online")) { 
     comp.setIcon(new ImageIcon("/Res/online.png")); 
     comp.setBackground(Color.green); 
    }else { 
     comp.setBackground(Color.white); 
    } 

    return comp; 
} 

顏色和文字設置得很好,但圖標將不會顯示。任何想法,將不勝感激!通過VGR和Camickr

編輯 - 建議你的建議是當場上解決了這個問題!看看重做的部分。我很感激。多謝你們!

//preloaded just added here to show. 
ImageIcon icon = new ImageIcon(getClass().getResource("/Res/onlineIcon.png")); 


@Override 
public Component prepareRenderer(TableCellRenderer renderer, int row, int col) { 
    JLabel comp = (JLabel)super.prepareRenderer(renderer, row, col); 
    Object value = getModel().getValueAt(row, col); 

    if (value.equals("online")) { 
     comp.setIcon(icon); 
     comp.setBackground(new Color(173,255,92)); 
    }else { 
     comp.setIcon(null); 
     comp.setBackground(Color.white); 
    } 
    return comp; 
} 
} 
+2

[ImageIcon構造函數文檔](http://docs.oracle.com/javase/8/docs/api/javax/swing/ImageIcon.html#ImageIcon-java.lang.String-)明確指出字符串參數是一個文件名。除非你的系統在文件系統的根目錄下有一個'Res'目錄,否則你可能打算做新的ImageIcon(getClass()。getResource(「/ Res/online.jpg」))或'new ImageIcon(getClass ).getResource( 「/ online.jpg」))'。請注意,您的'else'子句應該將圖標設置爲空,因爲單個渲染器可能用於多個表格單元格。 – VGR

+2

1)代碼是否正在執行?添加一個println(...)語句來驗證。 2)圖像是否被讀取?此外,不斷在prepareRenderer()方法中讀取圖像並不是一個好主意。渲染代碼應該很快。圖像應該被預加載。 – camickr

+0

哦,你們真是太棒了。 @VGR你是正確的我如何調用資源! camickr我接受了你的建議,並預裝了圖像,現在速度要快得多。你們好棒。 VGR請添加您的答案作爲一個真正的答案,所以我可以接受它! – basic

回答

1

ImageIcon constructor documentation清楚地表明,該字符串參數是一個文件名。除非您的系統在文件系統的根目錄中有一個Res目錄,否則您可能打算執行new ImageIcon(getClass().getResource("/Res/online.jpg"))new ImageIcon(getClass().getResource("/online.jpg"))

請注意,您的else子句應該將圖標設置爲空,因爲單個渲染器可能用於多個表格單元格。