4
BufferedImage img = null;
        ImageIcon icon = null;
        try {
            img = ImageIO.read(new File("resources/" + imageString));           
        } catch (IOException e) {           
            e.printStackTrace();
        }
        img = ImageScaler.getScaledImage(img, 35, 35);
        icon = new ImageIcon(img);
table.setValueAt(icon, 1, 0);

这是我的代码。但不显示图像。我需要一些帮助来找出我哪里出错了。

4

1 回答 1

4
  • 你必须阅读如何使用表格

  • 您可以直接将 Icon 或 ImageIcon 放入JTable 的 Cell

  • 为了获得更好的帮助,请尽快使用SSCCE编辑您的问题,演示您对 JTable 的问题

于 2012-04-27T07:08:27.107 回答