devxlogo

Execute a Process Without a Hang

Execute a Process Without a Hang

You may have noticed that running a process from Java using Runtime.exec() sometimes hangs the process. This is true especially in those cases where the process runs in the background. The output stream of the process soon gets filled and when no more data can be written on it, the process hangs.

The following code flushes the process’ output stream:

	Process p = Runtime.getRuntime().exec(cmd);	java.io.InputStream is = p.getInputStream();	input = new java.io.DataInputStream(new java.io.BufferedInputStream(is));	line = input.readLine(); // Read one line at a time	while (line != null) // Iterate for all lines in the input stream	{		line = input.readLine();	}

You can also modify this code to flush the process’ error stream?if you expect more data in the error stream.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist