devxlogo

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.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

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.