I need to call Cygwin from Java code ( example : to call make command in Cygwin from Java app which run on linux and windows ).Does anybody have experience with this problem ?

link|improve this question

63% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Use ProcessBuilder from Java:

http://download.oracle.com/javase/7/docs/api/java/lang/ProcessBuilder.html

You will need to make sure your path/environment is set up properly, but that depends on your machine and set up.

Also, note that many cygwin "capabilities" (e.g., less, awk, sed, etc) are simply binaries (executables) that you can call directly -- no need for the bash shell to facilitate access to those. Look at the actual files in wherever your bin folder is (usually c:/cygwin/bin) and try calling those directly from ProcessBuilder. If you need to actually leverage the shell (e.g., pipes, variables, globbing, etc) then that's a different story -- you would then integrate with the bash.exe file itself (check the man page for usage info).

link|improve this answer
feedback

I think you have to differentiate youre code for linux and windows

  • on linux simply execute the command
  • on windows lauch your command in cygwin with

C:\cygwin\bin\bash.exe --login -i -c <cmd>

note: you may use apache commons exec to lauch an external command from java

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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