tags:

views:

61

answers:

2

How can I read from a Windows shared drive using Java in such a way that the Java code which performs the reading could run equally correctly on any platform?

+3  A: 

You can use JCIFS to access SMB/CIFS shares using pure Java code.

Joachim Sauer
A: 

apache commons vfs is always a good choice.

Kai
Interesting. Unfortunately the CIFS support doesn't seem to be officially released yet.
Joachim Sauer