码迷,mamicode.com
首页 > 移动开发 > 详细

e557. 在Applet中显示图片

时间:2018-09-02 23:50:12      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:wim   base   class   ble   glin   related   doc   int   cell   

See also e551 精简的Applet.

    Image image;
    public void init() {
        // Load image
        image = getImage(getDocumentBase(), "http://hostname/image.gif");
    }
    public void paint(Graphics g) {
        // Draw image
        g.drawImage(image, 0, 0, this);
    }

 

Related Examples

e557. 在Applet中显示图片

标签:wim   base   class   ble   glin   related   doc   int   cell   

原文地址:https://www.cnblogs.com/borter/p/9575325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!