1
私はWindowsでファイルを持っており、このファイルをlinuxから読みたいと思っています。以下のコードは、Windowsから実行しようとするとうまく動作しますが、Linuxから実行しようとするとうまくいきます。WindowsからLinuxへのリモートファイルをApacheのコモンズvfsで読み取る方法は?
"Could not read from "file:///10.0.0.1/C$/myfolder/test.txt" because it is not a file."
ここは私のコードです。
FileSystemOptions opts = new FileSystemOptions();
DefaultFileSystemConfigBuilder.getInstance().setUserAuthenticator(opts, auth);
FileObject fo = VFS.getManager().resolveFile(remoteFilePath, opts);
InputStream inputStream = fo.getContent().getInputStream(); //this line throws exception