java执行脚本语言demo

来源:互联网 发布:淘宝开店流程ppt 编辑:程序博客网 时间:2024/06/12 01:33
public class Test {


/**
* @param args
* @throws IOException 
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
Process  process = Runtime.getRuntime().exec("cmd");
InputStream is = process.getInputStream();

BufferedReader br = new BufferedReader(new InputStreamReader(is));

String line ;


while((line = br.readLine())!=null)
System.out.println(line);
}


}
0 0
原创粉丝点击