GWT:如何从JSNI访问java变量

时间:2012-04-03 17:15:34

标签: gwt jsni

我有这个方法:

public void testJSNI2(){
  String x = "test";
}

我可以像这样访问这个方法:

helloJsni.@com.jsni.client.HelloJSNIImpl::testJSNI2(Ljava/lang/String;)

但是如何访问在方法中定义的字符串x

2 个答案:

答案 0 :(得分:4)

您无法访问变量x,因为它位于方法的范围内,就像您无法在Java代码中访问它一样。

答案 1 :(得分:3)

答案不正确。 JavaScript和Java不一样。 在JSNI的帮助下,Person可以从js访问任何字段:

public class JSNIExample {

  String myInstanceField;
  static int myStaticField;

  void instanceFoo(String s) {
    // use s
  }

  static void staticFoo(String s) {
    // use s
  }

  public native void bar(JSNIExample x, String s) /*-{
    // Call instance method instanceFoo() on this
    this.@com.google.gwt.examples.JSNIExample::instanceFoo(Ljava/lang/String;)(s);

    // Call instance method instanceFoo() on x
    x.@com.google.gwt.examples.JSNIExample::instanceFoo(Ljava/lang/String;)(s);

    // Call static method staticFoo()
    @com.google.gwt.examples.JSNIExample::staticFoo(Ljava/lang/String;)(s);

    // Read instance field on this
    var val = this.@com.google.gwt.examples.JSNIExample::myInstanceField;

    // Write instance field on x
    x.@com.google.gwt.examples.JSNIExample::myInstanceField = val + " and stuff";

    // Read static field (no qualifier)
    @com.google.gwt.examples.JSNIExample::myStaticField = val + " and stuff";
  }-*/;

}

您可以在此处看到:http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html