PHP / Java Bridge kullanarak PHP-Java entegrasyonu Sorunu

0 Cevap java

Ben Java ile PHP entegre çalışırken insanlar olduğunu.Marokko çok garip bir şey var sizden acil yardıma ihtiyacım var. Birincisi, benim soru:

When I start the Apache server service, the program runs ok. But, if I close the browser and open it again, the program no longer runs and give me a "Fatal error: Unable to create Java Virtual Machine in C:\php\java.php ...".

Ben Apache sunucu hizmetini yeniden başlatın, program yeniden çalışır, ancak aynı davranışı ile: Ben tarayıcı penceresini kapatın ve yeniden açın, eğer çalışmaz.

Ben internet üzerinden kontrol, ancak herhangi bir çözüm alamadım ama aynı sorunla karşı karşıya birçok kişi bulundu. Ve bunların çoğu PHP-Java köprü onun bir hata anlattı. Yani bu sorunla ilgili herhangi bir çözüm var. Herkes yardımcı olabilir, ben takdir edeceğim, seçenekleri dışında koştu.

Teşekkür ederiz.

My system specifications:

  • Windows XP

Ben yüklü

  • XAMPP server: - xampp-win32-1.6.1-yükleyici

Bu benim sistemde PHP, Apache, MySQL ve yükleyin. Şöyle Orada sürümleri

  • Apache Sürüm: - Apache/2.2.4 (Win32)
  • PHP version: - 4.3.1
  • Sun Microsystems JDK sürümü: - jdk1.6.0_16

Php-javabridge kullanarak bu PHP-Java extensoion elde ediyorum. Ben şu URL'den javabridge.jar dosyayı indirdiğiniz: http://php-java-bridge.sourceforge.net/pjb/download.php

Ben bu yolda indirilen javabridge.jar dosyayı yerleştirilir: C:\xampp\php\ext\

Aşağıdaki gibi php-java entegrasyon için php.ini dosyasında yapılan ayarlar bulunmaktadır.

; Directory in which the loadable extensions (modules) reside.
extension_dir = "C:\xampp\php\ext\"

I also uncomment the java extension.

extension=php_java.dll

Ben php.ini dosyasının Modül Ayarları bölümünde şu satırları ekledik.

;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;

[Java]
;This points to the directory where your Java 
;classes will be stored.  You can designate multiple
;paths, each path separated by a semicolon.
;It must also include the location of php_java.jar
java.class.path = "C:\xampp\php\ext\JavaBridge.jar;C:\xampp\php\extensions\php_java.jar;C:\Program Files\Java\jdk1.6.0_16\jre\lib;C:\Program Files\Java\jdk1.6.0_16;C:\prog"

;java.class.path = "C:\xampp\php\extensions\php_java.jar;C:\prog"
; This points to the bin directory of the JDK.
java.home = "C:\Program Files\Java\jdk1.6.0_16\bin"

; This must point to the Java Virtual Machine (jvm.dll) file.
java.library = "C:\Program Files\Java\jdk1.6.0_16\jre\bin\server\jvm.dll"

; This must point to the location of php_java.dll.
java.library.path = "C:\xampp\php\ext;C:\Program Files\Java\jdk1.6.0_16\jre\lib"

java.java = "C:\Program Files\Java\jdk1.6.0_16\bin\javaw.exe"

Java class which I am using in PHP script.

import java.util.*;
import java.text.*;

public class SalesTax {

  public String SalesTax(double price, double salesTax) {

    double tax = price * salesTax;

    NumberFormat numberFormatter;

    numberFormatter = NumberFormat.getCurrencyInstance();
    String priceOut = numberFormatter.format(price);
    String taxOut = numberFormatter.format(tax);

    numberFormatter = NumberFormat.getPercentInstance();
    String salesTaxOut = numberFormatter.format(salesTax);

    String str = "A sales Tax of " + salesTaxOut +
                 " on " + priceOut + " equals " + taxOut + ".";

    return str;

    }

}

PHP script test1.php which is using above java class

<?php
// Format the HTML form.
$salesTaxForm = <<<SalesTaxForm
   <form action="test1.php" method="post">
   Price (ex. 42.56):<br>
   <input type="text" name="price" size="15" maxlength="15" value=""><br>
   Sales Tax rate (ex. 0.06):<br>
   <input type="text" name="tax" size="15" maxlength="15" value=""><br>
   <input type="submit" name="submit" value="Calculate!">
   </form>
SalesTaxForm;

if (! isset($_POST[submit])) 
   echo $salesTaxForm;
else 
{
   // Instantiate the SalesTax class.
   $salesTax = new Java("SalesTax");
   // Don't forget to typecast in order to
   // conform with the Java method specifications.
   $price = (double) $_POST[price]; 
   $tax = (double) $_POST[tax];
   print $salesTax->SalesTax($price, $tax);
}
?>

0 Cevap