我对java很陌生,实际上我想在swing应用程序中显示朋友列表和他们的图片。我应该使用哪个组件?
谢谢
发布于 2014-08-19 00:04:01
试试JLabel。
Image image = GenerateImage.toImage(true); //this generates an image file
JLabel thumb = new JLabel();
thumb.setIcon(image)
有关更多指南,请参见本页面:Java:如何向Jlabel添加图像?
发布于 2014-08-19 00:04:51
您可以使用JList
或JTable
。
https://stackoverflow.com/questions/25378388
复制