Page 1 of 1

Warning Message when i invke the java classes

Posted: Thu Mar 20, 2003 11:51 pm
by mysqlee
i got the following Warning Messages when i invoke the classes written in
Java.
my Java code(Test.java):
=================================
public class Test
{
public void test()
{
System.out.println("Hello World!");
}
public String kevin(String abc,String efg){
return (abc+efg);
}
}
==============================
and my PHP code:
=======================
<?php
$bean = new Java("Test");

echo $bean->kevin("i love "," you");
?>
=======================
///////////////////
i got result below:
i love you
Warning: Unknown list entry type in request shutdown (0) in Unknown on
line 0
//////////////////


i provide my php.ini setting

[Java]
java.class.path = ".\extensions\php_java.jar;e:\project\java"
java.home = D:\java\jdk1.3
java.library = d:\java\jdk1.3\jre\bin\hotspot\jvm.dll
java.library.path = "d:\web\php4\extensions"

Posted: Fri Mar 21, 2003 9:04 am
by mysqlee
anyone can help me????

Posted: Fri Mar 21, 2003 9:24 am
by volka
have you tried the most recent version from http://www.php.net/downloads.php ?

Posted: Fri Mar 21, 2003 8:08 pm
by mysqlee
sure

i use the last version download from php.net

i will try to run my scripts on Linux platform.