How can I embed a java programme in PHP file and what
changes have to be done in PHP.ini file?



How can I embed a java programme in PHP file and what changes have to be done in PHP.ini file?..

Answer / pankajbisane

There are two possible ways to bridge PHP and Java: you can
either integrate PHP into a Java Servlet environment, which
is the more stable and efficient solution, or integrate Java
support into PHP. The former is provided by a SAPI module
that interfaces with the Servlet server, the latter by this
Java extension.
The Java extension provides a simple and effective means for
creating and invoking methods on Java objects from PHP. The
JVM is created using JNI, and everything runs in-process.

Example Code:

getProperty('java.version') . ''; echo 'Java vendor=' .
$system->getProperty('java.vendor') . ''; echo 'OS=' .
$system->getProperty('os.name') . ' ' .
$system->getProperty('os.version') . ' on ' .
$system->getProperty('os.arch') . ' '; // java.util.Date
example $formatter = new Java('java.text.SimpleDateFormat',
"EEEE, MMMM dd, yyyy 'at' h:mm:ss a zzzz"); echo
$formatter->format(new Java('java.util.Date')); ?>

The behaviour of these functions is affected by settings in
php.ini.
Table 1. Java configuration options
Name
Default
Changeable
java.class.path
NULL
PHP_INI_ALL
Name Default Changeable
java.home
NULL
PHP_INI_ALL
java.library.path
NULL
PHP_INI_ALL
java.library
JAVALIB
PHP_INI_ALL

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More PHP Interview Questions

How to download the files using PHP

1 Answers  


What is parent __construct ();?

0 Answers  


What's the difference between accessing a class method via -> and via ::?

0 Answers  


how to use between operator when retrieve from database(format-2008-jun-06)

3 Answers  


How to use the COM components in PHP?

2 Answers   HCL,






Tell me what is the main difference between require() and require_once()?

0 Answers  


What is self in php?

0 Answers  


Why php 7 is faster?

0 Answers  


What is meant by MIME?

0 Answers  


How cookies are transported from browsers to servers?

0 Answers  


What are the Formatting and Printing Strings available in PHP?

0 Answers  


I have written a source code in php but I do not know how to compile that and conduct it with a website please explain me the how to compile that ?

1 Answers  


Categories