当前位置: 网学 > 编程文档 > PHP > 正文

PHP程序如何调用功能强大的JAVA类库

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/17
下载{$ArticleTitle}原创论文样式
** 
* 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很好的调用它!
 

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号