Runtime problem
Can you please help me how to run this command with java (windows):
In console :
C:\Data> md5sum testing.zip > file.lst
I have tried :
===========================================================
String s = "md5sum testing.zip > file.lst";
try
{
Process p = Runtime.getRuntime.exec(s, null, "C:\Data\");
}
catch(IOException e)
{
e.printStackTrace();
}
===========================================================
seems OK, but the file.lst is not created.
Can you please help me ? Thank you.

