在 Perl 中使用文件参数执行 JAR 文件
我目前仍在学习 Perl,并一直在尝试让 Perl 脚本工作。
这是一个简单的脚本,它执行 Java JAR 文件,并将文本文件作为输入参数作为其配置文件。
例如,如果我要在命令行中正常执行 jar:
java -jar myfile.jar sometextfile.txt
我想在 Perl 中执行此操作。到目前为止,我有:
open(INPUT, "<$ARGV[0]");
my @args = ("java", "-jar", "nyfile.jar", INPUT);
system(@args);
close(INPUT);
脚本执行时似乎没有传递输入文件。我做错了什么?
预先感谢我能得到的任何帮助。
I'm still learning Perl at the moment and have been trying to get a Perl script working.
This is a simple script that executes a Java JAR file with a text file as an input parameter as its configuration file.
For example if I were to execute the jar normally in the commandline:
java -jar myfile.jar sometextfile.txt
I want to do this in Perl. So far, I have:
open(INPUT, "<$ARGV[0]");
my @args = ("java", "-jar", "nyfile.jar", INPUT);
system(@args);
close(INPUT);
The script doesn't seem to pass the input file when it is executed. What am I doing wrong?
Thanks in advance for any help I can get.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要在 Perl 中打开文件,只需将文件名(作为参数)传递给 Java:
Don't open the file in Perl, just pass the file name (as an argument) to Java: