質問

I am new to both PHP and Java. Currently I am working on a project which call java class and its methods in the PHP code. I am creating a proof of concept for this. The problem is I am not able to connect custom class I have created in java. More over it could be said I don't know how to do it. I have used java.inc and javabridge.jar files to connect to the system classes but not able to connect to a simple class. The step I have followed is:

Created a java package, class called clsForPHP and it has a method sum() which takes 2 parameters and returns integer value. (This is created using MyEclipse IDE) Now I am trying to call this function from PHP. I have copied the jar file containg the package to PHP project. (Eclipse- Helios is the IDE) $d= new java("clsForPHP.class");

Please help!! I have searched a lot but couldn't able to find a proper solution. What I think is this package should be added in the java.inc file but I don't know how to do it.

役に立ちましたか?

解決

First of all install Tomcat6 and Java in you Unix box. Most probably your Tomcat will be on 8080 port. Now Download JavaBridge.war from http://php-java-bridge.sourceforge.net/pjb/ unzip it. Then from WEB-INF/lib folder copy JavaBridge.jar ,php-servlet.jar and php-script.jar in lib folder of Tomcat. Then copy JavaBridge.war in your Tomcat6 webapps folder and restart your tomcat6 service which will deploy automatically JavaBridge folder in your webapps

Now try to browse http://localhost:8080/JavaBridge/. If you get working than your PHP/Java Bridge installed. First Part is over.

Now make test page in your apache as below

<?php
      require_once("http://localhost:8080/JavaBridge/java/Java.inc");
      echo java("java.lang.System")->getProperties();
?>

and run it. If it works then you can start working with your work. If it not work then you have problem with you php.ini file. Try to make allow_url_once=on in your php.ini.

Now just copy your java jar file in tomcat /webapps/JavaBridge/WEB-INF/lib/ folder and Just always put following line in your page where ever you want java to work

require_once("http://localhost:8080/JavaBridge/java/Java.inc");
$yourObj = Javav("your java class");
$yourObj->yourMethod();
$yourObj->setProperty("xxx");

Hope this can help you out.

IF you have still any problem get back.

Yea it will throw error because you must not have copied your java compiled file may be your jar file in PHP / Java Bridge.

You can to do in following 2 options way

  1. If you have define your CATALINA_HOME then copy $CATALINA_HOME/webapps/JavaBridge/WEB-INF/lib
  2. If you have not define your CATALINA_HOME then copy /var/lib/tomcat6/webapps/webapps/JavaBridge/WEB-INF/lib

Path which I am telling it assumes that you have install tomcat6, may be your tomcat webapps folder may be in different path.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top