朋友们,我必须从php脚本执行java应用程序,因为我已将jre文件夹文件移动到xammp文件夹并设置文件夹的路径。
我已经使用像
这样的示例java程序进行了测试PHP脚本:
<?php
$JAVA_HOME = "\jre1.8.0_60";
$PATH = "$JAVA_HOME/bin:".getenv('PATH');
putenv("JAVA_HOME=$JAVA_HOME");
putenv("PATH=$PATH");
//enter rest of the code here
shell_exec("java HelloWorld.java 2>&1");
$OUTPUT = shell_exec("java HelloWorld 2>&1");
echo $OUTPUT;
?>
我已将java文件放在&#34; C:\ xampp \ htdocs \ java_bridge \&#34;如果我通过PHP执行文件,则执行结果。
HelloWorld.java:
public class HelloWorld {
public static void main(String[] args) {
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
}
输出:
您好,世界
ExtractPagesFromPdfAndSaveAsNewPDFPage.java:
import java.io.File;
import java.util.List;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
/**
*
* @author udaykiran.pulipati
*
*/
@SuppressWarnings("unchecked")
public class ExtractPagesFromPdfAndSaveAsNewPDFPage {
public static void main(String[] args) {
try {
// String sourceDir = "C:\\Users\\user1\\Desktop\\java_pdf_split\\scan.pdf";
String sourceDir = "C:\\Users\\user1\\Desktop\\java_pdf_split\\scan.pdf";
String destinationDir = "C:/PDFCopy/";
File oldFile = new File(sourceDir);
String fileName = oldFile.getName().replace(".pdf", "");
System.out.println("New Filename: " + fileName);
System.out.println("Old Filename: " + oldFile.getName());
if (oldFile.exists()) {
File newFile = new File(destinationDir);
if (!newFile.exists()) {
newFile.mkdir();
}
PDDocument document = PDDocument.load(sourceDir);
List<PDPage> list = document.getDocumentCatalog().getAllPages();
int pageNumber = 1;
for (PDPage page : list) {
PDDocument newDocument = new PDDocument();
newDocument.addPage(page);
newFile = new File(destinationDir + fileName + "_"+ pageNumber +".pdf");
newFile.createNewFile();
newDocument.save(newFile);
newDocument.close();
pageNumber++;
}
} else {
System.err.println(fileName +" File not exists");
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
但是现在我必须执行java应用程序名称Java application1,因为我有一个名为&#34; ExtractPagesFromPdfAndSaveAsNewPDFPage&#34;如果我必须执行此操作,我应该如何给出exec路径(&#34;&#34;);
我的应用程序路径是&#34; C:\ xampp \ htdocs \ java_bridge \ JavaApplication1 \ src&#34 ;;
我的类文件路径是&#34; C:\ xampp \ htdocs \ java_bridge \ JavaApplication1 \ build \ classes&#34 ;;
如果我运行
shell_exec("javac \JavaApplication1\src\ExtractPagesFromPdfAndSaveAsNewPDFPage.java 2>&1");
$OUTPUT = shell_exec("java \JavaApplication1\build\classes\ExtractPagesFromPdfAndSaveAsNewPDFPage 2>&1");
它将输出返回为 错误:
错误:无法找到或加载主类\ JavaApplication1 \ build \ classes \ ExtractPagesFromPdfAndSaveAsNewPDFPage
请任何人告诉我如何通过php脚本执行java应用程序。
提前致谢。
答案 0 :(得分:0)
您也可以使用PHP的exec方法
编译:
<?php exec("javac C:\fakepath\file.java", $output); ?>
执行:
<?php exec("java C:\fakepath\file arguments", $output); ?>
执行jar文件:
<?php exec("java -jar C:\fakepath\file.jar arguments", $output); ?>