我正在尝试从Java程序执行我的Perl脚本。我已经在计算机上安装了Perl。以下是我的示例Perl文件(test.pl
)。
#!/usr/bin/perl -w
use 5.010;
use strict;
use warnings;
use Path::Tiny;
use autodie;
my $dir = path("E:/perl/scripts");
my $file = $dir->child("file.txt");
my $file_handle = $file->openw_utf8();
my @list=('a', 'list', 'of', 'lines');
push @list,<*.doc>;
push @list,<*.pdf>;
push @list,<*.jpg>;
push @list,<*.pl>;
print "Value of list = @list \n";
这是我执行Perl脚本的Java代码。
Process process;
try {
process = Runtime.getRuntime().exec("cmd /c perl E:\\perl\\PerlCallbyServlet\\test.pl");
//process = Runtime.getRuntime().exec("perl E:\\perl\\PerlCallbyServlet\\test.pl");
process.waitFor();
if (process.exitValue() == 0) {
System.out.println("Command Successful");
try {
BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
} else {
System.out.println("Command Failure");
}
} catch (Exception e) {
System.out.println("Exception: " + e.toString());
}
现在,当我尝试运行此Java类时,我的输出低于输出。
Command Successful
Value of list = a list of lines
但是当我使用命令从命令提示符运行此脚本时
perl test.pl
我的输出如下:
Value of list = a list of lines one.doc test.pl photo.jpg
所以我从Java程序执行的Perl脚本的输出与从命令提示符得到的输出不同。
答案 0 :(得分:0)
您的Perl脚本未设置工作目录。我假设您想将目录E:/perl/scripts
的内容添加到@list
。尝试添加到Perl脚本中:
chdir('E:/perl/scripts');
对不起,我没有使用Windows,所以我无法测试Windows下的路径是否正确。