開啟資料夾

import java.io.IOException;

public class OpenWindow {

public static void main(String arg[]){

try {

Runtime.getRuntime().exec("explorer.exe /, "+"E:\\111");

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}