代码之家  ›  专栏  ›  技术社区  ›  chaithra_a

图像未显示在小程序上

  •  0
  • chaithra_a  · 技术社区  · 7 年前

    import java.awt.*;  
    import java.applet.*;  
    
    
    public class DisplayImage extends Applet {  
    
    Image picture;  
    
    public void init() {  
     picture = getImage(getDocumentBase(),"IMG-20160319-WA0003.jpg");  
    }  
    
    public void paint(Graphics g) {  
     g.drawImage(picture, 30,30, this);  
    }  
    
    } 
    

         <html> 
           <HEAD>
       </HEAD>
    <body>  
    <applet code="DisplayImage.class" width="300" height="300">  
    </applet>  
    </body>  
    </html>  
    
    1 回复  |  直到 7 年前
        1
  •  0
  •   Jakob    7 年前

    确保图像与 .class .java 文件,作为 文件是正在执行的文件。

    enter image description here

    文件夹。将jar文件放在与html文件相同的文件夹中。然后你必须调整你的 .html

    <!DOCTYPE html>
    <html>
        <head>
        </head>
        <body>
            <applet archive="applet.jar" code="applet.DisplayImage.class" width="300" height="300">  
            </applet> 
        </body>
    </html>