怎樣使用PHP調用功能強大的JAVA 類庫

來源:互聯網
上載者:User
JAVA是個非常強大的編程利器,它的擴充庫也是非常的有用,這篇教程,主要講述怎樣使用PHP調用功能強大的JAVA 類庫(classes)。為了方便你的學習,這篇教程將包括JAVA的安裝及一些基本的例子。

windows下的安裝

第一步:安裝JDK,這是非常容易的,你只需一路斷行符號的安裝好。然後做好以下步驟。
在 Win9x 下加入 :“PATH=%PATH%;C:\jdk1.2.2\bin” 到AUTOEXEC.BAT檔案中
在 NT 下加入 “;C:\jdk1.2.2\bin”到環境變數中。

這一步是非常重要的,這樣PHP才能正確的找到需調用的JAVA類。

第二步:修改你的PHP.INI檔案。
[java]
extension=php_java.dll
java.library.path=c:\web\php4\extensions\
java.class.path="c:\web\php4\extensions\jdk1.2.2\php_java.jar;c:\myclasses"

在PHP.INI中加入extension=php_java.dll
並在[java]中,設定好java.class.path,讓它指向php_java.jar,如果你使用新的JAVA類,你也應該存入這個路徑,在這篇例子中,我們使用c:\myclasses這個目錄。

第三步:測試環境,建立如下PHP檔案:
<?php

$system = new Java("java.lang.System");
print "Java version=".$system->getProperty("java.version")." <br>\n";
print "Java vendor=".$system->getProperty("java.vendor")." <p>\n\n";
print "OS=".$system->getProperty("os.name")." ".
       $system->getProperty("os.version")." on ".
       $system->getProperty("os.arch")." <br>\n";

$formatter = new Java("java.text.SimpleDateFormat","EEEE,
MMMM dd, yyyy 'at' h:mm:ss a zzzz");
print $formatter->format(new Java("java.util.Date"))."\n";
  
?>

如果你正確安裝了,你將會看到以下資訊:

Java version=1.2.2
Java vendor=Sun Microsystems Inc.
OS=Windows 95 4.10 on x86
Wednesday, October 18, 2000 at 10:22:45 AM China Standard Time

這樣,我們就已經成功的建立起了可以使用JAVA類的PHP運行環境,我們可以開始我們接下去的課程了。
例子1:建立和使用你自己的JAVA類
建立你自己的JAVA類非常容易。建立一個phptest.java檔案,將它放置在你的java.class.path目錄下,檔案內容如下:

public class phptest{
/**
* A sample of a class that can work with PHP
* NB: The whole class must be public to work,  
* and of course the methods you wish to call
* directly.
*
* Also note that from PHP the main method
* will not be called   
*/

public String foo;

/**
* Takes a string and returns the result
* or a msg saying your string was empty
*/
public String test(String str) {    
if(str.equals("")) {
      str = "Your string was empty. ";    
}    
return str;   
}

/**
* whatisfoo() simply returns the value of the variable foo.
*/   
public String whatisfoo() {    
return "foo is " + foo;   
}


/**
* This is called if phptest is run from the command line with
* something like
*  java phptest
* or
*  java phptest hello there
*/
public static void main(String args[]) {
phptest p = new phptest();
     
if(args.length == 0) {
String arg = "";
System.out.println(p.test(arg));
}else{
for (int i=0; i < args.length; i++) {
String arg = args[i];
System.out.println(p.test(arg));   
}
}
}
}

建立這個檔案後,我們要編譯好這個檔案,在DOS命令列使用javac phptest.java這個命令。

為了使用PHP測試這個JAVA類,我們建立一個phptest.php檔案,內容如下:

<?php

$myj = new Java("phptest");
echo "Test Results are <b>" . $myj->test("Hello World") . "</b>";
  
$myj->foo = "A String Value";
echo "You have set foo to <b>"   . $myj->foo . "</b><br>n";
echo "My java method reports: <b>" . $myj->whatisfoo() . "</b><br>n";
  
?>

如果你得到這樣的警告資訊:java.lang.ClassNotFoundException error ,這就意味著你的phptest.class檔案不在你的java.class.path目錄下。
注意的是JAVA是一種強制類型語言,而PHP不是,這樣我們在將它們融合時,容易導致錯誤,於是我們在向JAVA傳遞變數時,要正確指定好變數的類型。如:$myj->foo = (string) 12345678; or $myj->foo = "12345678";

這隻是一個很小的例子,你可以建立你自己的JAVA類,並使用PHP很好的調用它!

經驗之談:這是紫月亮老兄提供給本人的,我以前曾經在php中配置過jdk,不過可能是php版本比較低的緣故,所以配置過程沒有出現任何的錯誤,如果大家在高版本的php中配置的時候需要注意:
1.路徑問題:java.class.path = "e:\php4JAVA\php_java.jar;e:\hb\php3\java\class" (你的class一定要放到class下(本例中))
2.php新版本單獨建了一個目錄,儲存php_java.jar,php_java.jar在JAVA目錄下,根本不在extensions裡面,請大家注意
3.在高版本的php.ini 中,先不要加extension=php_java.dll,我(紫月亮)開始加了,但是確顯示無法載入相關庫(庫?),後來又加上;就好了(就是===不加)
紫月亮老兄的經驗:不要太相信以前的資料,什麼多想想,多自己摸索,畢竟東西更新太快了!!不是我不明白,而是世界變化太快。。:)
本人在此整理一下,希望對配置php支援JAVA的同志能夠有所協助,同時也請紫月亮老兄見諒!!


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.