Open Explorer - java

后端 未结 3 768
-上瘾入骨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:32

    I would advise against this .getRuntime()... approach if you have a large application. This approach forks the process, so if you are running this from a large program (e.g., within an application server) the fork can eat up your entire available RAM.

提交回复
热议问题