Java - How to send a value to child process using outputstream?

2.3k Views Asked by At

I relaunch the child process every time than i need to obtain a random number, but i think that it can be done using outPutStream but i don't know how. I saw the others post but i don't found nothing relevant for my problem. I don't want to use sockets.

Main Process.

public class ejercicio7 {

    public static void main(String [] args){
        boolean cerrado = false;

        try {
            while(!cerrado){
                String entrada = JOptionPane.showInputDialog(null, "Introduce una entrada");
                Process proceso = Runtime.getRuntime().exec("java -jar C:\\Users\\Cristian\\Desktop\\java\\numeros.jar \"" + entrada+"\"");
                BufferedReader br = new BufferedReader(new InputStreamReader(proceso.getInputStream()));
                String texto;

                while((texto = br.readLine()) !=null){
                    if(Boolean.parseBoolean(texto)){
                        cerrado = true;
                    }else{
                        System.out.println(texto);
                    }
                }               
                br.close();
                proceso.destroy();
            }


        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

Child Process.

public static void main(String[] args) {

        if(args.length <=0 && args[0].length() == 0){
            System.out.println("No se ha introducido una entrada");
        }else{

            if(!args[0].equalsIgnoreCase("fin")){
                System.out.println(Math.round(Math.random() * 10));
            }else{
                System.out.println("true");
            }
        }

    }

}
1

There are 1 best solutions below

1
On BEST ANSWER

Make your child process handling input stream:

public static void main(String[] args) throws Exception {
    String line;
    BufferedReader reader = new BufferedReader(new InputStreamReader(System.in, "UTF-8"));

    while (!"fin".equals(line = reader.readLine())) {
        System.out.println(line);
    }

    System.out.println("buy");
}

Then in main process you can send messages to child process:

Process proceso = Runtime.getRuntime().exec("java -jar C:\\Users\\Cristian\\Desktop\\java\\numeros.jar");
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(proceso.getOutputStream()));
BufferedReader in = new BufferedReader(new InputStreamReader(proceso.getInputStream()));
String texto;

out.write(entrada + "\n");
out.flush();

while((texto = in.readLine()) !=null){
    ...