try{
Runtime rt = Runtime.getRuntime();
Process p = rt.exec("C:\\Windows\\explorer.exe");
InputStream in = p.getInputStream();
OutputStream out = p.getOutputStream();
InputStream err = p.getErrorStream();
p.destroy();
}catch(Exception e){
//Handle Exception
}
因此,上面的代码可以根据需要打开资源管理器窗口或任何其他文件夹,但是如何关闭打开的窗口呢?我想过使用 Robot 类,但不确定如何去做。