vote up -1 vote down star

Possible duplicates:


I want to execute a program of Perl from Java.

I take a file name with an argument and carry out a program, and the program of Perl outputs a result file.

So it is the program side of the JAVA

  1. I appoint an argument and carry out Perl program
  2. Perl program reads the file which I spitted out

2) checks the existence of the file and seems to be able to do it, but will 1) be possible? ActivePerl is installed with the present machine. I develop Java on Eclipse.

flag

41% accept rate
3  
Please stop calling it "JAVA" - it's not an acronym, the programming language is called "Java". – Jesper Sep 14 at 9:26
2  
"JAVA" is almost as annoying as people saying "PERL" – mpeters Sep 14 at 13:19
3  
I thought JAVA was a recursive acronym that makes reference to the virtual machine: Java Ain't a Vacuum-tube Appliance. ;) – daotoad Sep 14 at 18:41

2 Answers

vote up 7 vote down

Use:

String command = "ls";    
Runtime.getRuntime().exec(command);

Reference:Executing a Command

FYI: The link contains examples of commands with arguments, and with spaces too.

link|flag
vote up 0 vote down

This article explains it rather well.

link|flag
2  
JPL has been deprecated. It is not in Perl 5.10. Don't use it. Use Inline::Java instead. – daotoad Sep 14 at 8:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.