Php and java (1)

Source: Internet
Author: User

Author: Jing Zhongyue

JAVA is a very powerful programming tool and its extension library is also very useful. This tutorial mainly describes how to use PHP to call a powerful JAVA class library (classes ). For your convenience, this tutorial will include JAVA installation and some basic examples.
Installation in windows
Step 1: Install JDK. This is very easy. You only need to press enter to install JDK. Perform the following steps.
Add "PATH = % PATH %; C: jdk1.2.2bin" to the AUTOEXEC. BAT file Under Win9x.
Add "; C: jdk1.2.2bin" to the environment variable under NT.
This step is very important, so that PHP can correctly find the JAVA class to be called.
Step 2: Modify your PHP. ini file.
[Java]
Extension = php_java.dll
Java. library. path = c: webphp4extensions
Java. class. path = "c: webphp4extensionsjdk1.2.2php _ java. jar; c: myclasses"
Add extension = php_java.dll to PHP. INI.
In [java], set java. class. path to point to php_java.jar. If you use the new JAVA class, you should also store the path. In this example, we use the c: myclasses directory.
Step 3: create the following PHP file in the test environment:
$ System = new Java ("java. lang. System ");
Print "Java version =". $ system-> getProperty ("java. version ")."
N ";
Print "Java vendor =". $ system-> getProperty ("java. vendor ")."
Nn ";
Print "OS =". $ system-> getProperty ("OS. name ")."".
$ System-> getProperty ("OS. version"). "on ".
$ System-> getProperty ("OS. arch ")."
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 ";
?>
If the installation is correct, you will see the following information:
Java version = 1.2.2
Java vendor = Sun Microsystems Inc.
OS = Windows 95 4.10 on x86
Wednesday, October 18,200 0 at 10:22:45 AM China Standard Time
In this way, we have successfully established a PHP runtime environment that can use the JAVA class, and we can start our next course.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.