Bạn có thể mở Dòng đầu ra của quy trình và chuyển cụm mật khẩu sẽ được máy chủ đọc như thể bạn nhập nó đến từ STDIN.
final Process startServer = Runtime.getRuntime().exec("PostgreQL -D data/dir/ start");
PrintStream ps = new PrintStream(startServer.getOutputStream());
ps.println(passPhrase);