import javax.swing.filechooser.*;
//on a desktop system
String path = FileSystemView
.getFileSystemView()
.getDefaultDirectory()
.getPath();
//on android activity
String path = this.getApplicationInfo().dataDir;
//on android fragment
String path = getContext().getApplicationInfo().dataDir;