这样做有什么不妥:
public static Image getPicture01()
{
Applet app = new Applet();
Image t = app.getImage(app.getClass().getResource("/res/pic01.png"));
return t;
}
我的目标是从Java项目中获取资源(图像)并使用它。
答案 0 :(得分:3)
这样做有什么不妥:......
是的,这完全是不必要的,浪费的(创建一个不需要的对象,Applet),还有更好的选择 - ImageIO.read(...)。