doukun0888 2012-09-14 12:46
浏览 41
已采纳

是否有可能从Java Applet获取数据到PHP或MySQL?

I want to create a website with a game in applet form. I want to use the highscores that people get in the game to show up on a leaderboard on the website? How is this achievable?

Thanks

  • 写回答

3条回答 默认 最新

  • dongshendie8849 2012-09-14 12:49
    关注

    That can be done with JSObject, basically you pass information between Javascript and Java.

    Example based on the documentation .

    Let's say this is your Java Applet, the netscape.javascript.* library is used to call the Plugin container of your browser (the window your Java Applet runs in) to pass information to, or from it. This is example is from the documentation, you can change the version to your preferred JDK version to whatever version you use.

    import netscape.javascript.*;
    import java.applet.*;
    import java.awt.*;
    class MyApplet extends Applet {
         public void init() {
    
             // requesting the JSObject
             JSObject win = JSObject.getWindow(this);
    
             // here you call a javascript function
             win.call("myJavscriptFunction", null);
    
             // if you wish to pass an argument to the javascript function,
             // do the following
             String myString = "World!";
             final Object[] args = { myString };  
             win.call("myJavascriptFunction2()", args);
         }
    }
    

    I will use the EMBED tag as an example, but the OBJECT (IE etc) tag can used also (see documentation in the link on top). The most important property you should not forget, is enabling MAYSCRIPT=true

    <EMBED type="application/x-java-applet;version=1.3" width="200"
       height="200" align="baseline" code="XYZApp.class"
       codebase="html/" model="models/HyaluronicAcid.xyz" MAYSCRIPT=true
       pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html">
    <NOEMBED>
       No JDK 1.3 support for APPLET!!
    </NOEMBED>
    </EMBED>
    

    Now the javascript function in your HTML/PHP file

    <script text="text/javascript">
      function myJavascriptFunction() {
        alert("Hello!");
      }
    
      /**
       * with argument
       */
      function myJavascriptFunction2(myString) {
         alert("Hello "+myString);
         // will produce "Hello World!";
      }
    </script>
    

    reference: java.sun.com/products/plugin/1.3/docs/jsobject

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵