我正在寻找向小程序添加图像的好例子
我正在尝试将图像添加到我的小程序中。我已经用谷歌搜索过这个,但我还没有找到一个我理解的像样的例子。有谁知道我在哪里可以找到向小程序添加图像的好例子?
我在网上得到了这个,但是当我运行该小程序时,它不显示我的图像。
public class Lab5 extends JApplet {
//Lab5(){}
Image img;
public void init() {
img = getImage(getDocumentBase(), "img\flag0.gif");
}
public void paintComponent(Graphics g) {
g.drawImage(img, 50, 50, this);
}
}
下面是我的 HTML 文件
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<applet code="Lab5.class" width= 250 height = 50></applet>
</body>
</html>
I am trying to add an image to my applet. I have googled this but I have not found a decent example that I understand. Does anyone know where I can find a good example of adding an image to and applet?
I got this online but when I run the applet it doesn't display my image.
public class Lab5 extends JApplet {
//Lab5(){}
Image img;
public void init() {
img = getImage(getDocumentBase(), "img\flag0.gif");
}
public void paintComponent(Graphics g) {
g.drawImage(img, 50, 50, this);
}
}
Below is my HTML file
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<applet code="Lab5.class" width= 250 height = 50></applet>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个简单的示例,显示来自 Internet 的 URL 的图像。您可能会在 Internet url 的位置使用资源,例如应用程序 jar 目录中保存的图像:
Class SimpleAppletImage.java
class MyPanel.java
Here's a simple example that shows an image from a URL from the internet. You'd probably use a resource in the internet url's place, such as an image held in a directory of the application's jar:
Class SimpleAppletImage.java
class MyPanel.java