java awt中如何添加图片到panel,要详细的代码,并且是在Frame中操作的.....急... 5
3个回答
展开全部
JPanel 中覆盖paintComponent方法
public void paintComponent(Graphics) throws IOException
{
Image image =ImageIO.read(new File("....."));//''...."为本地图片文件路径,例如"f:\\aa\\片.jpg"
g.drawImage(image,0,0,null);
}
public void paintComponent(Graphics) throws IOException
{
Image image =ImageIO.read(new File("....."));//''...."为本地图片文件路径,例如"f:\\aa\\片.jpg"
g.drawImage(image,0,0,null);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private static Toolkit tk = Toolkit.getDefaultToolkit();
private static Image im=E.class.getResource("images/6.gif");//E指当前所在类images/6.gif目录
void draw(Graphics g) {
Color c = g.getColor();
g.setColor(Color.BLUE);
g.drawImage(im,x, y, null);
g.setColor(c);
private static Image im=E.class.getResource("images/6.gif");//E指当前所在类images/6.gif目录
void draw(Graphics g) {
Color c = g.getColor();
g.setColor(Color.BLUE);
g.drawImage(im,x, y, null);
g.setColor(c);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import sun.awt.hooltookit
import sun.awt.toolkit.image
就可以用一楼的了。。。
import sun.awt.toolkit.image
就可以用一楼的了。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询