当前位置:Gxlcms > PHP教程 > PHP/JavaBridge实例|PHP调用Java实例

PHP/JavaBridge实例|PHP调用Java实例

时间:2021-07-01 10:21:17 帮助过:18人阅读

package test;

publicclassHelloWorld {publicstaticfinal String JAVABRIDGE_PORT = "8080";//这个8080端口是Java.inc里指定的staticfinal php.java.bridge.JavaBridgeRunner runner = php.java.bridge.JavaBridgeRunner
            .getInstance(JAVABRIDGE_PORT);

    publicstaticvoidmain(String args[]) throws Exception {
        runner.waitFor();
        System.exit(0);
    }

    publicvoidhello(String args[]) throws Exception {
        System.out.println("!!!" + args[0]);
    }
}
require_once("C:\Users\Administrator\workspace\JavaPhp\Java.inc");
#require_once("http://localhost:8080/Java.inc");#这个http的方式报错,浏览器上可以访问的前提下$world = new java("test.HelloWorld");#包名不写不行echo$world->hello(array("from PHP"));
?>

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了PHP/Java Bridge 实例 | PHP 调用 Java 实例,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行