ngx-translate с Angular Universal (удаленный доступ)

Посмотрите на ProcessBuilder. После того, как вы настроили ProcessBuilder и выполнили start, у вас будет дескриптор Process, на который вы можете подать вход и прочитать вывод.

Вот фрагмент, который поможет вам начать :

ProcessBuilder pb = new ProcessBuilder("/bin/bash");
Process proc = pb.start();

// Start reading from the program
final Scanner in = new Scanner(proc.getInputStream());
new Thread() {
    public void run() {
        while (in.hasNextLine())
            System.out.println(in.nextLine());
    }
}.start();

// Write a few commands to the program.
PrintWriter out = new PrintWriter(proc.getOutputStream());
out.println("touch hello1");
out.flush();

out.println("touch hello2");
out.flush();

out.println("ls -la hel*");
out.flush();

out.close();

Выход:

-rw-r--r-- 1 aioobe aioobe 0 2011-04-08 08:29 hello1
-rw-r--r-- 1 aioobe aioobe 0 2011-04-08 08:29 hello2
0
задан cjskywalker 4 March 2019 в 07:25
поделиться