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 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥20 和学习数据的传参方式,选择正确的传参方式有关
  • ¥15 这是网络安全里面的poem code
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)
  • ¥50 python写segy数据出错
  • ¥20 关于线性结构的问题:希望能从头到尾完整地帮我改一下,困扰我很久了
  • ¥30 3D多模态医疗数据集-视觉问答
  • ¥20 设计一个二极管稳压值检测电路