Tagged Questions
The processbuilder tag has no wiki summary.
6
votes
1answer
3k views
Start a java process (using Runtime.exec / ProcessBuilder.start) with low priority?
I'm trying to start an external process via java using the ProcessBuilder class, and that much works. Currently running using the command:
new ProcessBuilder("java", "-jar", jarfile, args);
What I ...
6
votes
3answers
1k views
executing commands on terminal in linux through java
I have created an standalone application in which i want that when the user clicks on the run button then the terminal should open and a particular command should be executed on the terminal. I am ...
6
votes
5answers
2k views
What can cause Java to keep running after System.exit()?
I have a Java program which is being started via ProcessBuilder from another Java program.
System.exit(0) is called from the child program, but for some of our users (on Windows) the java.exe process ...
5
votes
2answers
176 views
Subprocess started from Java finishes using waitFor but streams aren't terminated
I am using Java's ProcessBuilder to start a subprocess, which is another Java program that has to run in a separate JVM.
I start two Threads to read from the stdout and stderr streams from the ...
5
votes
5answers
3k views
Java ProcessBuilder: Resultant Process Hangs
I've been trying to use Java's ProcessBuilder to launch an application in Linux that should run "long-term". The way this program runs is to launch a command (in this case, I am launching a media ...
4
votes
4answers
2k views
know PID java process
I've started a process with following code
ProcessBuilder pb = new ProcessBuilder("cmd", "/c", "path");
try {
Process p = pb.start();
}
catch (IOException ex) {}
Now I need to know ...
4
votes
1answer
430 views
running scripts through processbuilder
I'm trying to run Python, Ruby, C, C++, and Java scripts from a java program, and Processbuilder was suggested to me as a good way to run the scripts. From what I understand, Processbuilder mostly ...
4
votes
2answers
573 views
java: ProcessBuilder makes a memory hog
I have some issues regarding ProcessBuilder.
The program is basically a simple wrapper invoking a command line script.
When running the script on its own via the terminal, the memory consumption ...
3
votes
3answers
105 views
Java, Runtime.exec or ProcessBuilder: how to know if the file is shell or binary?
I'm looking into a most efficient way to decide:
Should I preprend the user-provided command line with the shell executable
If yes, what would that executable be? (/bin/sh? /usr/bin/perl? ...
3
votes
2answers
29 views
32bit JVM, ProcessBuilder.start() and ENOMEM
One application I have to deal with regularly launches shell helpers using ProcessBuilder. For reasons untold, it still runs on a 32bit JVM (Sun, 1.6.0.25) even though the underlying OS is 64bits ...
3
votes
1answer
334 views
Need help with performance of Java's ProcessBuilder under Solaris
My question is, do JVM's share some kind of resource related to threading or processes that could cause ProcessBuilder performance to spike after a month or more of normal usage? Using java 6 update ...
3
votes
5answers
688 views
Process requires redirected input
I have a UNIX native executable that requires the arguments to be fed in like this
prog.exe < foo.txt.
foo.txt has two lines:
bar
baz
I am using java.lang.ProcessBuilder to execute this ...
3
votes
4answers
5k views
Process Builder waitFor() issue and Open file limitations
I have inherited some code:
Process p = new ProcessBuilder("/bin/chmod", "777", path).start();
p.waitFor();
Basically, there is for some ancient and highly voodoo based reason for storing key/value ...
2
votes
1answer
40 views
Java on Linux: Start a process (using Runtime.exec / ProcessBuilder.start) with low priority
I need to start a CPU-intensive system process under low priority so that it doesn't slow down my server. How can I do this on Linux?
This is similar to this question: Start a java process (using ...
2
votes
0answers
35 views
java Process' inputStream stuck
Here's my scenario:
process A spawns child process B and spins threads to drain B's outputs.
process B spawns daemon process C and drains its outputs, too.
process B finishes, daemon process still ...
2
votes
2answers
38 views
Java process.start slows down extremely if parent is not destroyed after launching it
If I start a particular process directly from command line, I see it completely starts in 2-3 seconds.
If I start the exact same process with the exact same command from a Java program, it hangs on ...
2
votes
2answers
99 views
java.io.IOException: error=11
I am experiencing a weird problem with the Java ProcessBuilder. The code is shown below (in a slightly simplified form)
public class Whatever implements Runnable
{
public void run(){
...
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
2answers
73 views
Building a process pipe with ProcessBuilder in Java 7
I've been trying to figure out how to pipe a few processes in Java using the new ProcessBuilder. I can't find a suitable example of what I want to do and when I try to do it myself the process just ...
2
votes
3answers
90 views
How to find the PostgreSQL installation folder via Java without user interaction?
In my Java application I want to implement the option to dump/restore a PostgreSQL database. Some google research showed me that calling pg_dump/pg_restore via Java's ProcessBuilder is probably the ...
2
votes
1answer
574 views
java processbuilder windows command wildcard
I want to invoke a Windows command from Java.
Using the following line works fine:
ProcessBuilder pb = new ProcessBuilder("cmd.exe", "/C",
"find \"searchstr\" C://Workspace//inputFile.txt");
...
2
votes
1answer
205 views
Java ProcessBuilder how to capture file reading request from process and provide as stream?
I am somewhat familiar with ProcessBuilder and do process the streams.
Now I ran into the problem that the process that I am automating reads some information from two files that I need to provide.
...
2
votes
1answer
281 views
Swing - Launch browser and listen when user closes it
I have this specific requirement.
If user clicks on a button in GUI, I need to launch browser.
I need to wait for two minutes. If user closes browser before two minutes, I need to launch window 'A'. ...
2
votes
3answers
1k views
execute batch file remotely java
I want to execute a bat file located remotely on server
\\testserver\someFolderName\test.bat.
I am using process builder and wanted to chande the directory with
procbuilder.directory(....),
but could ...
2
votes
2answers
186 views
Java - How to Give method an array
I have a method like the following:
public void launch(String cmd, String [] args, String workingDir)
Inside this method I call ProcessBuilder.
How can I call ProcessBuilder including an ...
2
votes
4answers
925 views
Sharing objects across Java processes
I am executing another JVM (java.exe) from the main application. Is there any way to share an object (rather large object) with the newly created process (at the time of creation or after it was ...
2
votes
2answers
2k views
Using threads and ProcessBuilder
I am really unfamiliar with working with threads, so I was hoping someone could help me figure out the best way to do this.
I have a JButton in my java application...when you click on the button, I ...
1
vote
1answer
35 views
How can i create a Console Window for a nogui process started in java?
When i start a process without gui with java, no console (cmd.exe) window is opened.
Example:
ProcessBuilder builder = new ProcessBuilder("process",nogui);
Process process = builder.start();
How ...
1
vote
3answers
47 views
Launch a process without consuming its output
I used this line to execute a python script from a java application:
Process process = Runtime.getRuntime().exec("python foo.py", null, directory);
The script runs a TCP server that communicates ...
1
vote
1answer
47 views
trouble with ProcessBuilder
// following code works fine n open notepad...
class demo
{
public static void main(String args[])
{
try{
ProcessBuilder pb=new ProcessBuilder("notepad");
pb.start();
...
1
vote
1answer
54 views
Only part of script executed from the java program
I have tried running shell script from a Java Program, but the entire script is not being executed. And idea why we might come across such problem?
Following is the java code to execute shell script.
...
1
vote
2answers
154 views
ProcessBuilder does not stop
I am trying to decode an mp3 file to a wav file by using the ProcessBuilder class under Linux. For some reason the process does not stop so that I have to cancel it manually.
Could somebody give me a ...
1
vote
3answers
530 views
difference between ProcessBuilder and Runtime.exec()
I'm trying to execute external command from java code, but there's a difference I've noticed.
when running the code:
Process ...
1
vote
2answers
106 views
Starting a bash script from inside java that lives on after the jvm exits
I'm trying to run a bash script from inside java that will live on after the JVM exits. My current attempt looks something like this:
String[] linCmd = {"/bin/bash", "-c", "\"set +m; shopt -u ...
1
vote
3answers
534 views
How to pause process run using Java's ProcessBuilder.start()?
Alright, so I'm writing this program that essentially batch runs other java programs for me (multiple times, varying parameters, parallel executions, etc).
So far the running part works great. Using ...
1
vote
3answers
109 views
How to tell if a system property comes from human operator, not from default?
I have a JAR-packaged standalone application that, when executed, unpacks itself into a temporal directory and spawns a child process within that directory. The reason being some third-party code and ...
1
vote
2answers
1k views
Java Programming: call an exe from Java and passing parameters
I'm figuring out a mechanism to call an exe from Java and passing in specific parameters. How can I do?
Process process = new ProcessBuilder("C:\\PathToExe\\MyExe.exe").start();
InputStream is = ...
1
vote
1answer
285 views
Error In Executing A Batch File From A Java Program
Here is my problem:
I have a .bat file which has a number of commands. When I invoke this bat file from my java program using processbuilder it starts executing the commands in .bat file line by line. ...
1
vote
2answers
786 views
Executing an external executable in a working directory containing spaces in Java?
I have a specific need to unrar files found in different subdirectories during execution of my program on Os x. I do this by calling the freeware command line tool unrar, which works very well.
...
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
1answer
273 views
ProcessBuilder gets stuck after getting an error
I am trying to execute a .bat file remotely and implementing following lines of code:
ProcessBuilder processBuilder = new ProcessBuilder(command);
final Process process = processBuilder.start();
...
1
vote
1answer
207 views
Set the working path correctly
ProcessBuilder pb = new ProcessBuilder("pwd");
pb.directory(new File("/server1/work/uz/rt/adapt/0/"));
Process s = pb.start();
I expected the output to be /server1/work/uz/rt/adapt/0/, but instead ...
1
vote
2answers
361 views
Java: ProcessBuilder Changing the path
I'm writing a Java program that's supposed to be the GUI frontend that utilizes a tertiary C program to generate some values for various labels.
But I don't want have to hard code the path to the C ...
1
vote
1answer
386 views
powermock : ProcessBuilder redirectErrorStream giving nullPointerException
I am using powermock to mock some native command invocation using process builder. the strange thing is these test pass sometimes and fail sometimes giving a NPE. Is this a powermock issue or some ...
1
vote
1answer
328 views
Running Command via Java ProccesBuilder Different to Running the same in the Shell
I'm tearing my hair out trying to work out why the command I'm executing via Java using a ProcessBuilder & Process is not working. I run the "same" command at the Windows command line and it works ...
1
vote
3answers
2k views
Java ProcessBuilder: external process hangs
I'm using Java's ProcessBuilder class to run an external process. The process should not terminate before the Java program does; it must stay alive in command/response mode.
I know that the process ...
0
votes
1answer
35 views
Start Daemons from Java
Is it possible to start up a daemon from java. Specifically, I am trying to use MongoDB in java however I want my application to start up the mongod daemon if it not already running. I seem to be able ...
0
votes
3answers
38 views
Cannot run exe file with ProcessBuilder in Java
I am trying to run an exe file while setting some parameters for it like this:
myExePath -ini myIniPath -x myConfigFilePath
When I run it from the command line it works perfectly. But when I try ...
0
votes
2answers
43 views
ProcessBuilder.start() causes host JVM to exit
I'm developing a networked application where there is a Client and Server JVM, both of which are supposed to depend on set of identical jars, which may or may not be stored in the same location. ...
0
votes
2answers
30 views
Is there a better way to read from a process's inputstream and then handle using specified methods?
I am writing a program doing the following works:
Run a command using ProcessBuilder (like "svn info" or "svn diff");
Read the output of the command from the process's getInputStream();
With the ...