Desktop desktop = null;
if (Desktop.isDesktopSupported())
{
desktop = Desktop.getDesktop();
}
desktop.open(new File("c:\\SRC\\shankar\\a.doc"));
Here i don't want to specify the Drive C:
.
I need my code like
desktop.open(new File("\\\SRC\\\shankar\\\a.doc"));
Is there is any way?