I am working on a Java GUI, in which i have a JTable in which i have populated my file system, on JTable i have a Right Click Context Menu Like This

i right click on my File and it opens this folders in windows Explorer, to open a file/folder in windows explorer i am using this code
Desktop desktop = Desktop.getDesktop();
if (Desktop.isDesktopSupported()) {
}
try {
desktop.open(myFile); //myFile is my Selected File
} catch (IOException e) {
}
This opens myFile in windows Explorer Like this

i want that it should open windows and my file should be selected in windows explorer.

Thanks
