- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个 GWT包含嵌入式小程序的应用程序。
我想使用 JNSI 让 GWT 按钮将数据推送到那个小程序,但目前我什至无法连接它。寻求帮助 - 似乎无法找到任何解决如何让事情说话的方法。
在我的入口点类中,我定义了:
native void doSomething() /*-{
$doc.applet_id.doSomething();
}-*/;
我通过 ClickHandler 将其挂接到按钮。在小程序主类中,有一个 doSomething()
方法,在页面中我通过以下方式启动小程序:
<script>
var attributes = {codebase:'http://localhost:8888/',
code:'Applet.class', archive:'applet_test.jar', id:'applet_id',
width:100, height:40} ;
var parameters = {fontSize:16, jnlp_href:'launcher.jnlp'} ;
var version = '1.6' ;
deployJava.runApplet(attributes, parameters, version);
</script>
堆栈跟踪是
com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses
at com.google.gwt.event.shared.SimpleEventBus.doFire(SimpleEventBus.java:214)
at com.google.gwt.event.shared.SimpleEventBus.fireEvent(SimpleEventBus.java:103)
at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:96)
at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:107)
at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116)
at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:155)
at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1308)
at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1264)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:126)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:214)
at sun.reflect.GeneratedMethodAccessor56.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:281)
at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:531)
at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:352)
at java.lang.Thread.run(Thread.java:680)
Caused by: com.google.gwt.core.client.JavaScriptException: (TypeError): $doc.applet_id.doSomething is not a function
最佳答案
显然我的 jnlp 文件也需要
<param name="MAYSCRIPT" value="true"/>
在<applet-desc>
部分。添加MAYSCRIPT:true
但是,属性似乎不起作用。
关于java - GWT JSNI : invoking applet methods?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4099978/
使用 GWT JSNI JavaScriptObject 和 Element 作为 JSNI 方法的参数类型有什么区别? 考虑以下方法: native void method(JavaScriptOb
是否可以通过这种方式从同一个类中的另一个 native 方法调用 native 方法? public native JavaScriptObject mySECONDJsniMethod(String
我想在我的 gwt 应用程序中调用外部 javascript 函数 当我使用此代码时,它工作正常:我已经导入了javaScript,我可以在客户端的firebug中看到它 public static
我正在尝试在我的 GWT 项目中提供一些函数 Hook : private TextBox hello = new TextBox(); private void helloMethod(String
下面是访问 JS 方法的常用方法: public class JSNIHelper { public static native void errorNotify(String _title,
我有一个文件 jQuery 来创建翻转卡片效果,我将其更改为 JSNI,使用 native 函数但错误。我不知道怎么了。有谁能够帮我? 这是我的 native 功能: public native vo
我正在尝试在我的项目中实现 pickdate.js : http://amsul.ca/pickadate.js/date.htm 当我尝试调用该方法时: private native void ex
我正在尝试将此 JavaScript 代码转换为 JSNI 代码。 脚本导入 脚本 $('#q').typeahead({ minLength: 1, order: "as
我正在构建一个使用 Web SQL 本地存储的 GWT 应用程序 ( http://dev.w3.org/html5/webdatabase/ )。问题是 Web SQL API 使用回调函数作为论据
所以我有一个 GWT 应用程序,我正在尝试调用一个函数来从外部按钮更改应用程序的 View 。通常这被称为“this.internalFunction('string')”。问题是 JSNI 通过静态
我在 GWT 类中有以下代码: private native JavaScriptObject getRequest() /*-{ var request = ...; request
这是我的代码: package com.eggproject_hu.WPECommerceAdminSales.client; import java.lang.Boolean; import com
这是我的代码: package com.eggproject_hu.WPECommerceAdminSales.client; import java.lang.Boolean; import com
我正在开发一个 GWT 应用程序,并且正在获取一个包含选择查询结果的列表。此选择查询有行。每行的每个元素都通过“::”与前一个和下一个元素分隔。 我尝试使用 String.split 拆分它,但需要很
我想为以下 JavaScript 函数编写一个 GWT JSNI 包装函数。 object.cache(config); 其中 config 是具有以下可选参数的对象 - x Number - y N
我想在我的 gwt 代码中创建一个 canvas 元素。随后,我想应用第三方 javascript 库以便在新创建的 canvas dom 元素上进行绘制。所以这是我想做的事情的粗略想法: publi
我正在更改 JSNI 中的 JavaScript 函数,但事件监听器未正确调用。这是代码: private native void alert1()/*-{ $doc.addEventList
考虑以下小部件。我将其中两个添加到我的页面中。第一个的名称为“widget1”,第二个的名称为“widget2”。它只应该给出自己的名称,但由 javascript 调用。 (这个例子没有任何意义,只
我想从 gwt 调用任意 js 函数。函数名将在 functionname 变量中。像这样: private static native String execute(String functionN
html中有一个JavaScript函数 function someFunction(){ return "some text"; } 还有 JSNI: native String
我是一名优秀的程序员,十分优秀!