欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-22 20:20:55
...
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 ').text(i)); }; $numbering.fadeIn(1700); }); });

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