public NFS2InputStream(URL url) throws IOException {
// FIXME ... exception handling in this method should be reviewed. At the very least,
// there are places where finally clauses should be used.
mountClient = new Mount1Client(InetAddress.getByName(url.getHost()), Protocol.TCP, -1, -1);
nfsClient = new NFS2Client(InetAddress.getByName(url.getHost()), Protocol.TCP, -1, -1);
String path = url.getPath();
List<ExportEntry> exportList;
try {
exportList = mountClient.export();
} catch (MountException e) {