How do I run a Windows command in an Ruby app?

I am trying to run something like:

output = `cd #{RAILS_ROOT}/lib && java HelloWorld #{param1} #{param2}`

I print the result of the line above and paste it to a command prompt in Windows and it works just fine. However, when i run app and hit this code, output is blank rather than have a string I get back from HellowWorld. In HelloWorld I do a System.out.print("helloworld")

The following:

output = `cmd.exe /C dir`
puts "OUTPUT #{output}"

Returns:

OUTPUT

link|improve this question

69% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Issue in JRuby 1.5.3 fixed in JRuby 1.5.5: http://www.jruby.org/2010/11/10/jruby-1-5-5.html

link|improve this answer
feedback

Try to use File#join here. It will generate crossplatform path for you

http://apidock.com/ruby/File/join/class

my_path = File.join(RAILS_ROOT, "lib")
output = `cd #{my_path} && java HelloWorld #{param1} #{param2}`

Also you can execute your system commands this way:

`cd #{my_path} && java HelloWorld #{param1} #{param2}`
system("cd #{my_path} && java HelloWorld #{param1} #{param2}")
%x[cd #{my_path} && java HelloWorld #{param1} #{param2}]

Related topic: execute ruby code in ruby program

link|improve this answer
feedback

Backticks work fine for me. Try:

output = `dir`

to prove to yourself that it's working. At that point, your question is how to run a Java app from the command line, or why your particular app isn't work. Note that you can temporarily change the working directory like this:

Dir.chdir(File.join(RAILS_ROOT,'lib')) do
  output = `...`
end
link|improve this answer
Thanks Phrogz. I tried 'output = dir' to prove that it is working and it is not. I still get a blank string in output. Any idea what could be the issue? – rafael Apr 20 '11 at 13:43
2  
Show your code. – fl00r Apr 20 '11 at 13:53
@rafael Very odd; can you include your Ruby and Windows versions? – Phrogz Apr 20 '11 at 15:01
Good question. I just realized (remembered) I am using JRuby. On Windows 2003. – rafael Apr 20 '11 at 15:34
A bit more: JRuby on Rails app, on Tomcat 6, Java 1.6. – rafael Apr 20 '11 at 15:43
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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