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.
If you are using Java 6, the best way to do this is to use Desktop:
Desktop.getDesktop().open(new File(path));