Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
4k views

Java Runtime.getRuntime().exec() alternatives

I have a collection of webapps that are running under tomcat. Tomcat is configured to have as much as 2 GB of memory using the -Xmx argument. Many of the webapps need to perform a task that ends up ...
7
votes
3answers
263 views

How can I start a second Java process?

How can I start a second Java process platform independent? Ideally it should be the same Java version that currently running. Are there any helpful system properties?
7
votes
4answers
662 views

Mock Runtime.getRuntime()?

Can anyone make any suggestions about how best to use EasyMock to expect a call to Runtime.getRuntime().exec(xxx)? I could move the call into a method in another class that implements an interface, ...
7
votes
5answers
26k views

How do I run a batch file from my Java Application?

In my Java application I want to run a batch file that calls "scons -Q implicit-deps-changed build\file_load_type export\file_load_type" It seems that I can't even get my batch file to execute. I'm ...
5
votes
2answers
642 views

Run a sub process, provide input and output to it correctly in Java

I use Runtime exec() method to create a subprocess in Java. However, since the subprocess is an interactive program, I need to provide input to it as and when required by it. Also I need to show the ...
4
votes
5answers
860 views

process.waitFor() never returns

Process process = Runtime.getRuntime().exec("tasklist"); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); ...
4
votes
1answer
115 views

How can I determine the command used to start the current jvm?

I plan to spawn a child to do some work. I want to spawn the child using the same command line as the parent process. For example, if the parent was started like so: #>/usr/bin/java ParentProgram ...
3
votes
2answers
148 views

Running a continuous batch process in Java

I have a batch file which performs the operation of listening to the microphone and converting it to text (i am using pocket sphinx). The command I am using to run the batch file is ...
3
votes
1answer
107 views

Jboss Seam Interpolator: could it be use for execute command (java.lang.Runtime.exec)?

I had these odd message on my server before it crashed: [ (org.jboss.seam.core.Interpolator)] exception interpolating string: ...
3
votes
2answers
409 views

How to make pipes work with Runtime.exec()?

Consider the following code: String commandf = "ls /etc | grep release"; try { // Execute the command and wait for it to complete Process child = Runtime.getRuntime().exec(commandf); ...
3
votes
2answers
3k views

how to redirect stdin to java Runtime.exec?

I want to execute some sql scripts using Java's Runtime.exec method. I intend to invoke mysql.exe / mysql.sh and redirect the script file to this process. From the command prompt I can run the command ...
3
votes
5answers
1k views

Java Runtime Exec on Windows Fails with Unicode in Arguments

I want to launch a browser and load a web page using Java's Runtime exec. The exact call looks like this: String[] explorer = {"C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE", ...
3
votes
2answers
201 views

Saving to a subversion repository from Java

I want to save to a subversion repository. I am using the command - svn commit -m \"\" ./cms_test/www My class is: public int doBackup(){ int exitVal=-99; try { Runtime rt = ...
2
votes
0answers
111 views

Java process cannot capture InputStream, OutputStream from gpg.exe

I am trying to decrypt using gpg.exe --passphrase-file my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg (without --batch and --yes option). I am also providing the ...
2
votes
1answer
96 views

Running 32 bit app on Windows 7 with dependent DLLs

I have a simple 32 bit app running. It uses Qt and other libraries. Having figured out manifests, I have a folder containing the app , manifests and dependent DLLs. Running this on the target machine ...
2
votes
2answers
214 views

Java command Runtime.getRuntime().exec() in Mac OS

I´m using Mac OS Lion, with java version 1.6.0_26 I'm making a small app for Mac in Java with a main menu for the user, so he can choose several options. One of them is install an app using a .pkg ...
2
votes
1answer
173 views

Call python script within java code (runtime.exec)

I'm trying to run a python script in java but I'm having some troubles. I'm using the command bellow to execute the python script which is inside a folder called python in my java project: Runtime r ...
2
votes
1answer
198 views

java: Runtime.exec() Thread and errorOutput, readLine

I got very common thread hang condition although I don't understand why it happens. I have 2 threads: main() and errorStreamReaderThread In the main thread: - execute external process via ...
2
votes
1answer
372 views

How do I get the bash command exit code from a Process run from within Java?

I have a program which is: import java.io.*; import java.util.*; public class ExecBashCommand { public static void main(String args[]) throws IOException { if (args.length <= ...
2
votes
4answers
332 views

Runtime.getRuntime().exec(String[]) safety

I'm using Runtime.getRuntime().exec(String[]) to run processes where some of the elements of the String array are defined by the user. Is this safe? Or will it allow to inject code into the terminal? ...
2
votes
2answers
301 views

Runtime.getRuntime().exec - Executing osql query

I am trying to execute a osql command from Java program to restore database as follows. public void restore(){ Runtime.getRuntime().exec("cmd /c start osql -S PC-NAME -U username -P password -i ...
2
votes
3answers
562 views

Does “Runtime.getRuntime().exec()” have a bad performance?

I want to execute a jar from my own java application. (it's impossible to import that jar a library and start the app as an instance of my own "launcher"). To execute a jar from my own java app...I am ...
2
votes
1answer
573 views

Connecting to SFTP service via Java Runtime process

Under my project, I have a Java class file, inside of which I have a routine which executes the following external SFTP script file: #!/bin/sh echo "cd AV/OASIS" >> sftp echo "put $1 $2" ...
2
votes
2answers
423 views

Java Runtime Exec for VBA script with arguments

I am trying to use Runtime exec() to run a vba script with arguements. I am having trouble passing in the args. I think I need to use the String[] overloaded method for exec. Currently this works: ...
2
votes
3answers
485 views

design for a wrapper around command-line utilities

im trying to come up with a design for a wrapper for use when invoking command line utilities in java. the trouble with runtime.exec() is that you need to keep reading from the process' out and err ...
2
votes
1answer
390 views

in x64 Windows is there a way to run a Runtime.exec() process avoiding 'Registry redirection'

Our app runs in jvm 32 bit, even when in windows x64. Now, at some point, I need to access some registry values, for example HKEY_LOCAL_MACHINE/SOFTWARE/mycomp. I do this by executing cmd /C reg ...
2
votes
1answer
594 views

Runtime.getRuntime().exec() with a non-ASCII string in Windows?

Trying the following method to open an Arabic URL: String cmd = "cmd.exe /C start \"Open file\" \"http://ar.wikipedia.org/wiki/موسوعة\""; Runtime.getRuntime().exec( cmd ); Unfortunately, the ...
2
votes
7answers
7k views

Runtime.getRuntime().exec(), hide the console screen

I am executing a batch file using Java code. The code is given below: Process proc = null; proc = Runtime.getRuntime().exec("cmd /c start somebat.bat"); With this, the normal command prompt screen ...
2
votes
3answers
1k views

Hudson job hangs at Runtime.exec

I'm running Hudson as a windows service through Tomcat, with no slaves involved. The last build step in the job is a batch file that invokes some Java code. The code uses PostgreSQL's command line ...
2
votes
2answers
1k views

Code run by Hudson can't find executable on the command line

I'm setting up my first job in Hudson, and I'm running into some problems. The job monitors two repositories, one containing our DB setup files, the other a bit of code that validates and tests the DB ...
1
vote
1answer
69 views

Runtime Exec stop unexpectedly

I have a little executable program in C that produce a lot of output to a file. When I call this program with Runtime, like this: Runtime r = Runtime.getRuntime(); Process p = null; p = ...
1
vote
5answers
144 views

Java Runtime.exec() asynchronous output

I'd like to get the output from a long running shell command as it is available instead of waiting for the command to complete. My code is run in a new thread Process proc = ...
1
vote
1answer
104 views

cat Unix command directly from java, should not call shell Script

I have one question. Is it possible to run unix command directly from java {not as a shell script} ? I saw ls command is directly executed the output viewed getting object of bufferedReader. Actually ...
1
vote
1answer
140 views

Can Java Runtime.exec another java program that uses stdin?

I have run into an issue where , when using Java Runtime to run another java program, the program freezes because the other program requires stdin . There is a problem with handling the stdin ...
1
vote
3answers
146 views

Fetch and store output from a subprocess in Java

I'm working on something that requires me to start to subprocess(command prompt) and execute some commands on it. I need to fetch the output from the subprocess and store it in a file or String. ...
1
vote
2answers
384 views

how to use java runtime.exec() and ssh to another machine to start a process

is this the right approach? public void doSomething() { Process p; String[] cmd = {"/usr/bin/ssh", "someRemoteMachine", "/absPathToMyProg/myProg"}; String[] envp = ...
1
vote
1answer
92 views

use attr linux command from Java program

I want to attach meta data to a file in Unix file system. attr command lets me do that but the command syntax requires the path of the attached variable to be in double qoutes. attr -s outpipe0 ...
1
vote
1answer
240 views

Modal-like dialog in conjunction with Runtime.exec in java

I'm running an external program from within Java and waiting for it to finish: Process p = Runtime.getRuntime().exec("notepad"); p.waitFor(); This is called from a GUI application and I would like ...
1
vote
2answers
653 views

Android: Problem setting file permissions when filename has a space

Have an app where I store .png images in the app's cache directory, and as I am sharing these files via messaging, etc, I need to make the files readable temporarily by everyone (i.e. chmod 755). As ...
1
vote
4answers
243 views

Java & Multiline Batch Files

I try to run batch file in java, but file performed not completely. Code look like: Runtime.getRuntime().exec("cmd /c call "+path); When I try to run it manually, without java, batch works correct. ...
1
vote
2answers
1k views

how to compile & run java program in another java program?

I have a Main.java and Test.java classes that I want to compile and run Main.java in Test.java code. Here is my code Process pro1 = Runtime.getRuntime().exec("javac Main.java"); ...
1
vote
1answer
2k views

Android Runtime.getRuntime().exec() to nav through directories

So I want to be able to write an app that can turn on and display logcat messages, dmesg, and also be able to run commands like 'ls' 'cat' 'echo' 'cd.' If I do the following: nativeProc = ...
1
vote
2answers
645 views

Runtime.exec() can't run “su - postgres -c 'pg_dump …'”

This is the command I want to run: su - postgres -c "pg_dump ....." to backup the postgres database. If I am now in linux shell, as a root, it works great. But now, I want to run it from a java ...
1
vote
1answer
2k views

ProcessBuilder vs Runtime.exec()

I'm trying to create a frontend app in Java to handle batch SVG conversions using Inkscape's command line feature. I'm taking and updating the code from ...
1
vote
2answers
566 views

How to use Java Runtime.exec() with Windows REG utility to Read/Update/Delete entries in HKEY_LOCAL_MACHINE\…\CurrentVersion\Run?

I want to use Runtime.exec() to update the registry for HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run using the Windows REG command utility. Need to be able to add/remove/read an ...
1
vote
2answers
475 views

Opening an URL with request parameters in IE using Java Runtime class

I've a code block to open a given URL in default browser. I've problem opening URLs with parameters in IE, When the default browser is FireFox it works fine, but it seems that IE is removing those ...
1
vote
2answers
379 views

Using Runtime.exec to fork another instance of the current process

I'm trying to use Runtime.exec to start a copy of the current process. I am not necessarily interested in a fork because I don't need to share state. Is there a way I can determine the command used to ...
1
vote
3answers
4k views

Runtime.exec causes duplicate JVM to hang indefinitely until killed (Solaris 10)

All, We are running a J2EE application on WebLogic server 9.2 MP2 with a jrockit 64-bit JVM (27.3.1) on Solaris 10. We call use runtime.exec to call an executable called jfmerge to create PDF ...
1
vote
2answers
2k views

Runtime.exec() with absolute directory

I would like to use Runtime.exec() to initiate another process in a directory with spaces. (It sounds stupid but I really want to satisfy my curiosity) Details of the problem(simplified version) I ...
1
vote
3answers
534 views

Is there a way to generate the 8.3 or 'short' (Windows) version of a file name in Java?

In our application, we are allowing users to open files and directories. Java 6 provides us with... java.awt.Desktop.getDesktop().open(file); which works great. However, since we need to ensure ...

1 2 3