我需要使用Java Runtime.getRuntime()。exec()执行我的 Perl脚本文件。但是我的perl脚本文件位于服务器路径中。我尝试通过 SmbFile系统通过java 。但我找不到解决方案。请告诉我,如何通过java执行perl脚本(perl文件位于服务器路径)。
示例: -
SmbFile serverPath = new SmbFile("smb://domainName;userName:password@serverPath/");
String ServerFilePath = serverPath + "test.pl";
process = Runtime.getRuntime().exec("perl" + ServerFilePath);
感谢您对此进行调查。
Maria Prabudass