| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 561 人关注过本帖
标题:求救!!!
取消只看楼主 加入收藏
howisyou
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-11-6
收藏
 问题点数:0 回复次数:0 
求救!!!
请各位帮忙解决一下~我的这代码是用窗体显示图片```可图片出不来~是什么原因呢?

/**
 * @(#)tt.java
 *
 *
 * @author
 * @version 1.00 2008/4/6
 */
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
public class tt extends Frame {
        
    /**
     * Creates a new instance of <code>tt</code>.
     */
    Image img;
    public tt() {
        
        this.setLayout(new FlowLayout());
        this.setSize(720,480);
        this.addWindowListener(new a());
        //this.show();
        this.setVisible(true);
    }
    public void Paint(Graphics g)
    {
        Toolkit tk=Toolkit.getDefaultToolkit();
        Image img=tk.getImage("1.jpg");
        g.drawImage(img,0,20,this);
    }
    public void update(Graphics g)
    {
        this.Paint(g);
    }
   
    public void repaint(Graphics g)
    {
        this.Paint(g);
    }
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        new tt();
    }
}
class a extends WindowAdapter
{
    public void windowClosing(WindowEvent e)
    {
        System.exit(1);
    }
}
2008-04-06 21:38
快速回复:求救!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034244 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved