最好使用.png文件;.ico是Windows特定的。最好不要使用文件,而是使用类资源(可以包装在应用程序的jar中)。
URL iconURL = getClass().getResource("/some/package/favicon.png");// iconURL is null when not foundImageIcon icon = new ImageIcon(iconURL);frame.setIconImage(icon.getImage());
尽管您甚至可能考虑将setIconImages用于多种尺寸的图标。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)