Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
zipTransfer.plJavaの関数内からこのperlプログラムを実行したかった
zipTransfer.pl
private void runZipTransfer() throws IOException { Runtime.getRuntime().exec(new String[] {"C:\\Perl64\\bin", "C:\\Lazy\\zipTransfer.pl"}); }
しかし、私の Java プログラムを実行しても何も起こりません! ここで問題はどこですか?
perl インタープリターを実行する必要があります。
Runtime.getRuntime().exec(new String[] {"C:\\Perl64\\bin\\perl.exe", "C:\\Lazy\\zipTransfer.pl"});
試す:
Runtime.getRuntime().exec(new String[] {"perl", "C:\\Lazy\\zipTransfer.pl"});