How to make this work on windows , the file filename.txt is not being created.
Process p = Runtime.getRuntime().exec("cmd echo name > filename.txt");
Clearly the expected output is a "filename.txt" should be created (C:\Documents and Settings\username\filename.txt ) with the content "name".
Was able to manage with the following code , even though the file was"filename.txt" is not being created with processBuilder
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec("cmd /c cleartool lsview");
// Directly to file
//Process p = Runtime.getRuntime().exec(
// new String[] { "cmd", "/c", "cleartool lsview > filename.txt" },null, new File("C:/Documents and Settings/username/"));
InputStream is = process.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
System.out.printf("Output of running %s is:",
Arrays.toString(args));
while ((line = br.readLine()) != null) {
System.out.println(line);
}
OR , using ProceessBuilder ,
Process process = new ProcessBuilder( "cmd", "/c", "cleartool lsview" ).start();
InputStream is = process.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is));
System.out.printf("Output of running %s is:", Arrays.toString(args));
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
java.io.File? – Bozho Sep 23 '10 at 11:27cmd /k echo name > filename.txt? – Thomas Lötzer Sep 23 '10 at 11:50