【Java】特定のフォルダをexplorerで開く

https://www.google.com/search?q=os%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89+%E3%83%95%E3%82%A9%E3%83%AB%E3%83%80%E3%82%92%E9%96%8B%E3%81%8F&oq=os%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89+%E3%83%95%E3%82%A9%E3%83%AB%E3%83%80%E3%82%92%E9%96%8B%E3%81%8F&aqs=chrome..69i57.46314j0j7&sourceid=chrome&ie=UTF-8

OSコマンドの確認
https://technical-knowledge-info.hatenablog.com/entries/2010/03/12

Javaで外部プロセスの呼び出し
https://qiita.com/suzuki_y/items/212ae68059a2c340b79c

http://www.ne.jp/asahi/hishidama/home/tech/java/process.html

結果

import java.io.IOException;

public class test {

public static void main(String[] args) {

String dir = “explorer C:\\eclipse”;
String[] Command = { “cmd”, “/c”, dir}; // 起動コマンドを指定する
Runtime runtime = Runtime.getRuntime(); // ランタイムオブジェクトを取得する
try {
runtime.exec(Command,null,null);
} catch (IOException e) {
System.out.println(e);
}

}

}