Calling executable .jar on server via javascript
Is there 开发者_JS百科any way to pass something to an executable .jar on the server.
You can a have server side page which calls a jar. Is that what you mean?
ofcourse you can if you desing the app to accept values
var editor = document.getElementById(applet_id);
editor.callMethod('com.myclass.applet.Interface', method+'', param+'')+"";
we pass the values from javascript to the applet like the example above
精彩评论