Menu

[r1070]: / trunk / php-java-bridge / tests.php5 / showResources.php  Maximize  Restore  History

Download this file

15 lines (11 with data), 284 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/usr/bin/php
<?php
include_once ("java/Java.inc");
$here=realpath(dirname($_SERVER["SCRIPT_FILENAME"]));
if(!$here) $here=getcwd();
java_require("$here/showResources.jar");
$sr=new java("ShowResources");
$sr->main(array());
echo "\n\n";
$sr->main(array("showResources.jar"));
?>