Processbuilder is Java wrapper around an Operating System Process. This class is used to create operating system processes.

learn more… | top users | synonyms

0
votes
3answers
31 views

How to redirect Process Builder's output to a string?

I am using the following code to start a process builder.I want to know how can I redirect its output to a String. ProcessBuilder pb = ...
0
votes
1answer
31 views

How to check if process is running

ProcessBuilder pb = new ProcessBuilder("notepad"); Process p = pb.run(); System.out.println("Notepad is closed") The code above will run fine and open up notepad. However the print statement will ...
0
votes
0answers
19 views

ProcessBuilder keep process window from closing

I am using ProcessBuilder to execute a program. Currently when I execute the process the program opens up, runs its scripts and then immediately closes. I would like to keep the program open after I ...
0
votes
2answers
38 views

ProcessBuilder not read execute file

Below c program has two arguments a,b if it is match from user input,it print the values. I try to run c execute file in Java ProcessBuilder, but it does not read execute file. Java code import ...
0
votes
0answers
61 views

ProcessBuilder using double quotes

I have updated my question after receiving suggestion about SSCCE. Here it is again: I am trying to execute following code with ProcessBuilder using JDK7u21: List<String> cmd = new ...
2
votes
1answer
41 views

ProcessBuilder and command with space

I recently updated my Java version to JDK7u21. In the release notes of update 21, it is clearly mentioned about issue using Runtime.exec. I therefore want to change my code to use ProcessBuilder. I ...
0
votes
1answer
49 views

Process Builder cannot find the path specified, using AppData folder

This is probably a simple question, I'm fairly new to Java but in my search I haven't been able to figure out why exactly this code doesn't work. String execLoc = ...
0
votes
1answer
63 views

Can't run program with ProcessBuilder, runs fine from command line

On linux (debian), I can run this command: /usr/lib/jvm/jdk1.7.0_21/bin/java -jar ~/myjar.jar ".*" I am trying to run it from a Java program instead with: ProcessBuilder pb = new ...
0
votes
0answers
50 views

starting an external process(shell) and delegate commands from the host to the started process

I am currently working with ProcessBuilder and ProcessIO. I can start a new SBT-Process programmatically and print the output the hosts console. The problem at the moment is writing or executing a ...
1
vote
1answer
39 views

ProcessBuilder with gunzip does not work

I am trying to run this code which fails with the note: gzip: /home/idob/workspace/DimesScheduler/*.gz: No such file or directory The code: ProcessBuilder gunzipPB = new ...
1
vote
0answers
56 views

java - processbuilder - linux - prompt not captured in output stream

linux version: MINT 14 netbeans 7.2 I am pretty recent into programming, and I face this difficulty. I have a GUI with 2 jtextarea, one where we type commands, one where the commands output goes (a ...
1
vote
1answer
68 views

Running a Perl script in Java using ProcessBuilder

I am using ProcessBuilder in Java to run a Perl script. When I run the Perl script while printing the InputStream of the process, the Java program seems to run for the duration of the Perl script. ...
2
votes
3answers
51 views

Howto get memory usage of a started process

I try to get the memory usage of a process started via Java. Can someone give me a hint how to do it for the example Notepad.exe? // Memoryusage of the Java programm Runtime ...
0
votes
1answer
29 views

start external cmd prompt and update it concurrently with java application

I want to be able to run an external cmd prompt concurrently with my Java code. While running java application need to start external cmd prompt ,and this command prompt need to updated from my java ...
0
votes
2answers
49 views

Run command line code on button click

I'm working on a Java program and I want to execute some command line code when the user clicks a button. I have to code to execute my command line code and the button code but I don't now how to ...
1
vote
0answers
41 views

ProcessBuilder redirected to standard output

I would like to redirect a java process output towards the standard output of the parent java process. Using the ProcessBuilder class as follows: public static void main(String[] args) { ...
0
votes
0answers
30 views

log4j BLOCKED when running intellij from other program

I get BLOCKED when running intellij from anther program(Shell) using ProccessBuilder while the intellij use the log. When I close the shell the program Intellij start running. From what I understand ...
0
votes
1answer
22 views

JNLP, ProcessBuilder and file hierarchy

Here's the picture: I have a code split across some jars and libraries in the following hierarchy: Main.jar ---lib | ------ Secondary.jar ------ Lib1.jar ------ Libx.jar ...
0
votes
1answer
33 views

Creating java process to execute class within current jar

So hopefully the title covers the jist, I am aware there are multiple posts around this kind of thing, the issue I am specifically having is how to set the classpath for the jar i am currently running ...
0
votes
1answer
52 views

ProcessBuilder cannot run python script with arguments

Ok, so I have a python script that I am running through ProcessBuilder. Everything is working fine. The issue I am having is whenever I pass arguments into the python script, the python script ...
0
votes
1answer
57 views

ProcessBuilder not behaving properly with multiple arguments

I have a ProcessBuilder: String src = c:/hello/ String dst = c:/hello/2 ProcessBuilder builder = null; builder = new ProcessBuilder("c:/file/file.exe", "-i", src, "-f", "-l 500", dst); ...
0
votes
2answers
38 views

Changing the Environment Variables of a ProcessBuilder after the process started

I want to set Environment variables of a SubProcess, built via a ProcessBuilder, after it started. The following code does not work: ProcessBuilder pb = new ProcessBuilder("cscript.exe", ...
0
votes
0answers
39 views

Using pipe in hadoop

I am using ProcessBuilder to run an executable.It works fine. Now I am in a scenario where I have to give output of 1st executable to the second one. eg: exe1 arg1 arg2 | exe2 arg3 and get its ...
0
votes
2answers
120 views

Progress monitor (Indeterminate) to show execution happens at backend

I am executing an external process at the backend using Processbuilder in my java program.I am using process.waitFor to get the exit status of the process. The backend process 'll take time which ...
0
votes
2answers
48 views

Spawn another process and not wait for it

I have 2 java processes. I want to start one of the processes from the other process via ProcessBuilder. My problem is that I only want to start the other process. I don't want to wait for any results ...
1
vote
4answers
121 views

Bypassing 'Cannot refer to a non-final variable inside an inner class defined'

I have the following code, but when I declare the String line outside of the new Thread class I get an exception. I'm from a C# background, so I understand now that Java does not support true ...
0
votes
2answers
33 views

Exception when trying to Regex match Processbuilder output

I have the following code: private void GetInfo(String src) throws IOException{ Scanner scan = new Scanner(System.in); String filename = new File(src).getName(); ...
1
vote
2answers
53 views

ProcessBuilder.start() returns 0 but doesn't execute shell script

I'm trying to use ProcessBuilder to execute a shell script on my Linux server, from a Servlet running on WebSphere Application Server. The code returns 0 (using .waitFor()), but the script doesn't ...
0
votes
1answer
90 views

ProcessBuilder - A potential bug

I am having a strange issue when trying to execute a block of code (more particularly the ProcessBuilder class in Java) Code that works: package modules.user.verify; import java.io.*; import ...
0
votes
1answer
210 views

Java starting running command in new terminal (mac osx) - process builder not running osascript properly

I'm trying to create a new process in a new window. I'm following this example for the command Running a command in a new Mac OS X Terminal window (using Java Process builder). I printed out the ...
0
votes
1answer
90 views

Java process builder get built command

I need to start a process in a new console window. For macs, I found something like this: Running a command in a new Mac OS X Terminal window where the command to run is passed as a string. So I made ...
0
votes
1answer
57 views

IOexception while runing bash commands through ProcessBuilder

I am getting a IOException when trying to run a sed command through Java using a ProcessBuilder: ERROR: java.io.IOException: Cannot run program "sed -i 's/hello world//g' /home/user/test": error=2, ...
3
votes
1answer
81 views

Sending KeyEvents to a Process

I am trying to send keyboard commands to a game emulator from my Java program, I know how to set up the process from processbuilder and run the process. However, I'm still having trouble with ...
0
votes
1answer
42 views

Why isn't ProcessBuilder able to launch my executable when provided with an absolute filename? [closed]

I have an Android application that is trying (and failing) to launch a native process using ProcessBuilder. Here is what I have: String[] args = {"/data/data/com.me.myapp/files/myexec", "param1", ...
0
votes
1answer
68 views

How to run a executable as guest or limited user using java ProcessBuilder

Lets say i'm running as admin and i have a c executable as 'myProgram.exe'. I want to execute it using ProcessBuilder in my java program. e.g. ProcessBuilder pb = new ...
0
votes
2answers
98 views

Process.waitFor() a thread

While running an external script, I want to read the ErrorStream and OutputStream of this script both simultaneously and separately and then process them further. Therefore, I start a Thread for one ...
0
votes
1answer
55 views

An application to get Userinput and to run commands background in windows

I want to create one standalone executable file which accepts some user input and it should use those inputs as arguments to run a command at CMD as background process. For GUI i thought of using ...
0
votes
1answer
242 views

Loading Executables with Java ProcessBuilder

I'm trying to use ProcessBuilder to load executables from my Java application. Code: String [] cmdArray = new String[1]; cmdArray[0] = mPathToFile + mGameArrayList.get(i).Directory + ...
0
votes
1answer
75 views

Cant get the wkhtmltopdf attributes to work with in java code

I am using wkhtmltopdf converter to convert html file to pdf. It works fine except that the output does not fit the page in pdf. Using --zoom 2 fixes the problem at command line but with using the ...
6
votes
1answer
110 views

Concurrency issue between waiting for a process and reading the stream?

I use a ProcessBuilder to run processes. I handle Input/Output streams by submitting the corresponding runnables handling them in a thread pool (Executors.newCachedThreadPool()). I get the result but ...
1
vote
2answers
29 views

ProcessBulder loads the process but doesn't start it

I use ProcessBuilder to start a new process (child) form a java application (host). Something like this: ProcessBuilder processBuilder = createProcess(commandLine); processBuilder.directory(new ...
0
votes
1answer
57 views

How can I pass a stream from one thread to the other?May be I should be doing this differently?

I have a wrapper for a ProcessBuilder so that any class needing to run a process can use it. The class passes the process and the arguments and will return the result. The result would be the ...
0
votes
2answers
59 views

ProcessBuilder and cmd

Why does ProcessBuilder pb = new ProcessBuilder("cmd","/C","dir"); work but ProcessBuilder pb = new ProcessBuilder("cmd","dir"); does not. I mean in the latter case the cmd starts but the ...
0
votes
0answers
102 views

getting exit value of actual command in process builder

i am using ProcessBuilder for executing windows command through java code , here is my code String[] command = {"cmd.exe","/c","jar.exe"}; ProcessBuilder processBuilder = new ...
0
votes
3answers
92 views

How to use exitValue() with parameter?

A very good article (When Runtime.exec() won't) says: The only possible time you would use exitValue() instead of waitFor() would be when you don't want your program to block waiting on an external ...
1
vote
1answer
51 views

Design optimizations when making external process calls

I need from a java process to call external processes/scripts/cli commands. Since these calls will be quite a lot and some will return back the result of the process/script that run and others will ...
1
vote
1answer
84 views

'C' binary executed through ProcessBuilder is blocking flow of execution

I'm trying to execute a binary (written in 'C') through Java, while binary is executed successfully. It does not return execution control to this code (blocked) until 'Enter' keystroke is pressed. ...
0
votes
1answer
70 views

ProcessBuilder works starting jar but does not acknolwledge jar's arguments

I am trying to run jmol's jar inside a running java program. This is how I run it in the command line and it runs fine. $ java -jar Jmol.jar 1644_____.pdb -o -J "measure 3 4;measure 1 2" I am using ...
1
vote
1answer
604 views

Java ProcessBuilder with multiple params with spaces

I know that there is a lot of solved questions regarding executing processes from java.But I am unable to solve my problem using answers provided. I am trying go create postgresql database backup from ...
0
votes
1answer
129 views

Java String execution in Linux terminal

I am using StringBuilder to create a string and then trying to execute the string on Linux terminal. But instead of executing whole command, it executed half command and then terminates it. This is my ...

1 2 3 4 5 6