最近想在浏览器里面写个坐标系统,用java applet。
public class AppletTest1 extends Applet {
StringBuffer buffer;
String word;
public void init(){
buffer=new StringBuffer();
addItem("initializing...");
}
public void start(){
addItem("starting...");
setSize(500,500);
}
public void stop(){
addItem("stopping...");
}
public void destroy(){
addItem("preparing for destroy...");
}
void addItem(String newWord){
System.out.println(newWord);
buffer.append(newWord);
repaint();
}
public void paint(Graphics g){
/*g.drawRect(0,0,getSize().width-1,getSize().height-1);
g.drawString(buffer.toString(),5,15);*/
Graphics2D g2 =(Graphics2D)g;
Shape shape = new Rectangle2D.Double(5,5,100,100);
Color color = Color.GREEN;
g2.setPaint(color);
g2.fill(shape);
g2.draw(shape);
String para = getParameter("word");
g2.drawString(para,200,15);
}
}
注意的是传参数是通过getParameter("word");来实现的。
html代码应该为
<html>
<applet code=AppletTest1.class width=300 height=300>
<param name=word value=models/HyaluronicAcid.xyz>
</applet>
</html>
分享到:
相关推荐
<title>Simple Applet Example <applet code="Test1.class" width="400" height="400"></applet> ``` 这个HTML文件通过`<applet>`标签指定了Applet类(`Test1.class`)及其在页面上的大小。当用户打开这个网页...
<title>Java Applet Example <applet code="HApt.class" width="300" height="200"> </applet> ``` **特点**: - 在HTML文件中使用`<applet>`标签; - `code`属性指定Java Applet的字节码文件名; - `width`...
这个"100-java-applet-example.zip"压缩包显然包含了100个Java Applet的示例,对于想要深入理解和学习Java Applet编程的初学者来说,是一份极其宝贵的资源。 Java Applet的工作原理基于Java的“Write Once, Run ...
<title>Applet Example <applet code="JavaAppletExample.class" width="300" height="100"> </applet> ``` 编译Java源文件使用命令`javac JavaAppletExample.java`,然后通过浏览器加载HTML文件或使用命令`...
<title>Applet Example <applet code=HelloApplet.class width=100 height=100></applet> ``` 这个HTML文件用于在浏览器中加载并运行Applet。在DOS界面中,使用`appletviewer HelloApplet.html`命令查看Applet...
<title>Java Applet Example <applet code="Ko2_2.class" width="250" height="90"> </applet> ``` **说明**: - `applet`标签用于指定Applet程序的位置。 - `code`属性指定Applet程序的类文件路径。 - `...
<h1>This is an applet example <applet code="AppletTest.class" width="800" height="600"> </applet> <a href="AppletTest.java">The source</a>. ``` **知识点解析**: 1. **`import java.applet.*;...
<applet code="com/example/MyApplet.class" width="200" height="200"></applet> ``` 此时,在命令行中执行appletviewer命令时也需要指定正确的路径: ``` appletviewer AAA.html ``` **4. 直接运行Java...
<applet code="com.example.MyApplet.class" archive="AppletExample.jar"></applet> ``` 在Applet的`init()`方法中,我们可以设置JavaScript接口: ```java public void init() { javaScriptInterface = new ...
<applet code="com.example.MyApplet.class" width="300" height="200"></applet> ``` 其中`code`属性指定Applet类的全限定名,`width`和`height`定义Applet的显示尺寸。 3. **Jpowered_style.css** 这可能是一...
2. **使用标签**:在HTML的<applet>标签中,可以使用标签来传递参数,包括类路径相关的配置,如`<param name="code" value="com.example.MyApplet.class">`。 3. **使用对象标签**:HTML5推荐使用标签替换<applet>...
<applet code="com.example.MyApplet.class" width="300" height="200"></applet> ``` - 参数传递:可以通过`<param>`标签向Applet传递参数,这些参数在Applet内部可以通过`getInitParameter()`方法获取。 3. **...
<title>Example Applet <applet code="Animator.class" width="800" height="600"> </applet> ``` 在这个例子中,`imagesource`参数被设置为`images/Beans`,这意味着Applet将尝试从指定的路径加载图片...
imgPath = "img/" + "example.gif"; } public void paint(Graphics g) { URL imgURL = getDocumentBase(); img = getImage(imgURL, imgPath); g.drawImage(img, xpoint, ypoint, this); } } ``` 随着Web...
<applet code=Example13_1.class height=180 width=300></applet> ``` 这个HTML文件随后需要通过Web服务器发布,使得其他用户可以通过浏览器访问并下载Applet的字节码进行执行。 在客户端,浏览器的内置JVM负责加载...
【标题】"applet上传控件带例子源码"指的是一个Java Applet程序,它用于实现文件上传功能。Applet是Java的一种小程序,可以在Web浏览器中运行,为用户提供交互式的功能,比如文件上传。这个控件是开发人员可以集成到...
附带的文件"viewer-applet-example.html"可能是一个HTML文件,展示了如何在网页中嵌入VNC Viewer作为Java小应用程序(applet)。这使得用户可以直接在网页浏览器中启动VNC连接,无需下载单独的应用程序。 "tightvnc...
Applet是一种小型的Java程序,可以在浏览器中运行。由于安全限制,Applet需要进行数字签名才能在用户的计算机上执行。本文将详细讲解如何使用Ant来打包Applet并添加数字签名。 首先,理解Ant的基本结构。Ant的构建...
In order to run the example application unzip the file .zip and read the HowToRun.txt file. FILES: Examples.htm: applet examples - Javadoc directory: javadoc files. - Help_english....
public class StringExample { public static void main(String[] args) { String str = "Hello, Java!"; System.out.println("Length: " + str.length()); System.out.println("First character: " + str....