I tried below code for access network shared directory.But it worked if credentials not needed.
Once i have to pass the credentials it may be worked.
But i don't how to pass credentials for sharedDrive in following code.
File f = new File("//hostname/sharedDrive/Folder");
// returns pathnames for files and directory
File[] paths = f.listFiles();
Anyone suggest me way to access folder with credentials in java without using external libraries?
use with constructor for NtlmPasswordAuthentication
or directly
or (if no password needed)