在eclipse里如何创建HTML文件
如果用eclipse开发Javaapplet程序如何,有时候需要把applet嵌入html文件中,请问在eclipse中如何创建html文件啊?谢谢了相应程序如下:imp...
如果用eclipse开发Java applet程序如何,有时候需要把applet嵌入html文件中,请问在eclipse中如何创建html文件啊?谢谢了
相应程序如下:import java.applet.Applet;
import java.awt.*;
public class AppletPara2 extends Applet {
private String text;
private int size, color;
public void init(){
this.text = this.getParameter("text");
this.size = Integer.parseInt(this.getParameter("size"));
this.color = Integer.parseInt(this.getParameter("color"), 16);
}
public void paint(Graphics g){
g.setColor(new Color(this.color));
g.setFont(new Font("", 1, this.size));
g.drawString(this.text, 10, 50);
}
}
对应的html文件:
<applet codebase="."
code="javaApplet.AppletPara2.class"
name="AppletPara2"
width="320"
height="240">
<param name= size value= 30>
<param name= text value= "AppletHello!">
<param name= color value= 000088>
</applet>
运行后它显示未初始化的小程序,请问这个是怎么回事 展开
相应程序如下:import java.applet.Applet;
import java.awt.*;
public class AppletPara2 extends Applet {
private String text;
private int size, color;
public void init(){
this.text = this.getParameter("text");
this.size = Integer.parseInt(this.getParameter("size"));
this.color = Integer.parseInt(this.getParameter("color"), 16);
}
public void paint(Graphics g){
g.setColor(new Color(this.color));
g.setFont(new Font("", 1, this.size));
g.drawString(this.text, 10, 50);
}
}
对应的html文件:
<applet codebase="."
code="javaApplet.AppletPara2.class"
name="AppletPara2"
width="320"
height="240">
<param name= size value= 30>
<param name= text value= "AppletHello!">
<param name= color value= 000088>
</applet>
运行后它显示未初始化的小程序,请问这个是怎么回事 展开
7个回答
展开全部
<html>
<head>
<title>FileAccessApplet 测试程序</title>
</head>
<body>
<applet code="FileAccessApplet.class" archive="FileAccessApplet.jar" width="500" height="500"></applet>
</body>
</html>
保存文件后,在cmd中输入htmlconverter,使用这个转换工具转换一下,把转换后的html内容考回eclipse中的html文件相应位置后就可以了
___________________________________________
你的myeclipse安装成功后,菜单中有myeclipse项,右击工程中也有myeclipse项
都不知道你到底要做什么了?????
<head>
<title>FileAccessApplet 测试程序</title>
</head>
<body>
<applet code="FileAccessApplet.class" archive="FileAccessApplet.jar" width="500" height="500"></applet>
</body>
</html>
保存文件后,在cmd中输入htmlconverter,使用这个转换工具转换一下,把转换后的html内容考回eclipse中的html文件相应位置后就可以了
___________________________________________
你的myeclipse安装成功后,菜单中有myeclipse项,右击工程中也有myeclipse项
都不知道你到底要做什么了?????
展开全部
如果你安装了Myeclipse插件的话..就如下操作.
右键工程-->new-->Other-->Myeclipse-->web-->HTML
右键工程-->new-->Other-->Myeclipse-->web-->HTML
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
右键点目录new个File,文件名的扩展名写.html就可以拉.
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
右键工程名-----html就OK了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
还不是用标签就可以啊。
就是这样的结构啊:
<html>
<head>#头部#
<title>#标题#
</title>
</head>
<body>#身体#
</body>
</html>
就是这样的结构啊:
<html>
<head>#头部#
<title>#标题#
</title>
</head>
<body>#身体#
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询