我有一個標籤。我想要渲染圖像。但是下面的代碼會做任何事情。將圖像渲染成標籤
CardLayout cl = (CardLayout) (mainPanel.getLayout());
cl.show(mainPanel, "newPersonaCard");
BufferedImage myPicture = ImageIO.read(new File("C:\\Desktop\\Documents\\Pictures\\always.jpg"));
ImageIcon icon = new ImageIcon(myPicture);
icon.getImage().flush();
我正在使用netbean設計器。
嘗試再次打包容器。 – user1329572 2012-04-25 15:11:29
爲了儘快提供更好的幫助,請發佈[SSCCE](http://sscce.org/)。但按鈕點擊加載圖像,也許從[這些圖像](http://pscode.org/media/#image)之一熱鏈接。 – 2012-04-25 15:20:14
http://stackoverflow.com/a/8530698/977676這種解決方案的工作原理,如果你仍然有問題,發佈SSCCE! – COD3BOY 2012-04-25 15:32:31