我有一个 GWT Web 应用程序。
它从另一个类调用方法(使用 JSNI 方法)。
但是我想从那个类中调用一个 dll 方法......我该怎么做?
public class external_class {
public native void shows()/*-{window.alert("hello");}-*/;
}
在 GWT Web 应用程序调用中
external_class obj = new external_class();
obj.shows();
如果我在 dll 文件中定义了 show() 方法,如何调用它?或者我如何通过 JSNI 直接从 GWT 应用程序调用 dll 方法?
请给我一个解决方案....