`

读取系统图标

 
阅读更多
public class Test {
	public static void main(String[] args) {
		JFileChooser jc = new JFileChooser();
		FileSystemView view = jc.getFileSystemView();
		
		Icon icon = view.getSystemIcon(new File("D:\\user"));
	
		JFrame f = new JFrame();
		f.setSize(800, 600);
		f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		JLabel lab = new JLabel(icon);
		f.add(lab);
		
		f.setVisible(true);
	}
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics