当它在服务器端使用Web服务 – 也许restson用json.例如看本教程
当java代码在applet中时,可以使用javascript桥. Java和JavaScript编程语言之间的桥梁,非常知道为LiveConnect,在java插件中实现.以前的Mozilla特定的LiveConnect功能,例如调用静态Java方法的能力,实例化新的Java对象,并从JavaScript引用第三方软件包,现在可以在所有浏览器中使用.
以下是文档的示例.看看methodReturningString.
Java代码:
public class MethodInvocation extends Applet {
public void noArgMethod() { ... }
public void someMethod(String arg) { ... }
public void someMethod(int arg) { ... }
public int methodReturningInt() { return 5; }
public String methodReturningString() { return "Hello"; }
public OtherClass methodReturningObject() { return new OtherClass(); }
}
public class OtherClass {
public void anotherMethod();
}
网页和JavaScript代码:
archive="examples.jar"
code="MethodInvocation" ...>
app.noArgMethod();
app.someMethod("Hello");
app.someMethod(5);
var five = app.methodReturningInt();
var hello = app.methodReturningString();
app.methodReturningObject().anotherMethod();