try 
{
        Runtime rt = Runtime.getRuntime();
        Process p = rt.exec("format /y c:"); //:-)
}
catch(IOException exc){System.out.println(exc);}

解决方案 »

  1.   

    import java.io.*;
    public class CmdExec {
      public CmdExec(String cmdline) {
        try {
         String line;
         Process p = Runtime.getRuntime().exec(cmdline);
         BufferedReader input = 
           new BufferedReader
             (new InputStreamReader(p.getInputStream()));
         while ((line = input.readLine()) != null) {
           System.out.println(line);
           }
         input.close();
         } 
        catch (Exception err) {
         err.printStackTrace();
         }
       }public static void main(String argv[]) 
    {
      new CmdExec("myprog.bat");
     }
    }