如何获取ImageIcon路径的String Java Jtable

时间:2019-07-11 13:00:11

标签: path jtable imageicon

With Sheet1

.Range("H2", .Range("O" & .Rows.Count).End(xlUp)).Clear

End With

我有一个图像存储在jlabel中,并显示在jtable行单元格中。我如何获得图像路径作为字符串。我能够检索图像并将其显示在另一个jlabel上,但是我一直在获取其路径。 C:\ Users \ Public \ Pictures \ Sample Pictures \ Chrysanthemum.jpg

1 个答案:

答案 0 :(得分:0)

                    JLabel excelJL = (JLabel) model.getValueAt(i, j);
                    ImageIcon excelImageIcon = (ImageIcon) excelJL.getIcon();

                    //Image Name Is Stored In ImageIcons Description First set it And Then Retrieve it
                    String excelImagePath = excelImageIcon.getDescription();

我设法使用getDescription()方法获取图像路径。但是首先需要在将图像添加到jtable单元中时设置描述。