怎么样输出到cmd

import java.io.IOException;

public class Example03 {

	public static void main(String[] args) throws IOException {
		// TODO 自动生成的方法存根
		Runtime rt = Runtime.getRuntime();
		rt.exec("cmd /k  start cmd.exe");// 打开cmd并且显示窗口

		System.out.println("Test");
	}

}


和你一起闪耀到世界尽头
浏览 1659回答 2
2回答

poterliu

这个有什么用途?

Its_forever

public class Test {     public static void main(String[] args) {       try {              Runtime.getRuntime()                      .exec("cmd.exe /C start");              System.out.println("finish");          } catch (IOException e) {              e.printStackTrace();          }     } }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java