Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8278595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T09:04:20+00:00 2026-06-08T09:04:20+00:00

I am developing a web application in which I am using Java as my

  • 0

I am developing a web application in which I am using Java as my front end and shell as my back end . I am processing lot of files in shell .. for instance if I have to process 100 files . I am planning to spawn 4 sub processes from Java application. I read about process Builder . But I am not getting a clear idea of how to use the start() method to spawn multiple processes and then wait for all of them until it is done and again continuing processing . Any ideas reagrding this would be highly useful to me. Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T09:04:22+00:00Added an answer on June 8, 2026 at 9:04 am

    Generally speaking, start will call Runtime.exec(...) on your behalf.

    Once running (off in it’s own little process), you can interact with the it via the processes input and output streams.

    In my own work, I monitor the input and error streams. I do this by spawning a new thread for each stream and monitor the through put via the stream.read() method and look for a return result of -1 to determine when the streams have completed.

    I use a third “monitor” thread which is used to provide “waitFor” functionality and help clean up the stream threads.

    I would recommend at least reading the input and error streams in seperate threads as this allows you to monitor the process without blocking your current thread context.

    If you want to wait for the process to exit, you should use Process.waitFor() (the process is returned to you by the ProcessBuilder.start() method). This will wait for the process to exit. This method will return the exit code for the process which can be useful to respond to errors that the process may want to tell you about.

    Okay, so in short…

    ProcessBuilder pb = new ProcessBuilder(new String[] {cmd, parameter1, parameter2, ...});
    Process process = pb.start();
    
    InputStream is = process.getInputStream();
    InputStream isErr process.getErrorStream();
    
    // Spawn some threads to process the streams
    
    int exitValue = process.waitFor();
    
    if (exitValue == 0) {
    
        System.out.println("All is good with the world");
    
    } else {
    
        // Handle error     
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing java enterprise web application using EJB 3.1 and I wonder which technology
I'm developing a web application using Java EE6 and JSF 2.0. I have a
I am developing web application and using codeIgniter framework. I have one module which
I'm developing an Android application which sends content to a server using rest web
I am developing a web application with which user can view files in the
I am developing a web application using JSF on Netbeans 7.0. I have created
I am developing a Java EE web application using Struts. The problem is with
We're developing a data heavy modular web application stack with java but have little
I am developing a web application in Java, in which I want to send
I am developing a web application on JAVA EE 6 with SEAM 3, using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.