Open Explorer - java

后端 未结 3 800
-上瘾入骨i
-上瘾入骨i 2021-01-12 12:47

In one of my java swing application, I am dynamically open windows share folder. Now I want to open it using explorer. So can you guys please help me out to solve it.

3条回答
  •  情歌与酒
    2021-01-12 13:35

    In Windows (XP/Vista) the following code will work:

    Runtime.getRuntime().exec("explorer /select,  " + folder);
    

提交回复
热议问题