私はこのようなことをしたい:
File root = new File("C:/file.txt");
ただし、ローカルネットワークで共有されているフォルダーにあります。ファイルが192.168.1.28にあるとしましょう。上記のコマンドでどのように作成しますか?
次は機能しません:
File root = new File("//192.168.1.2/file.txt");
File root = new File("\\\\192.168.1.2/file.txt");
File root = new File("\\192.168.1.2/file.txt");
File root = new File("file:\\192.168.1.2/file.txt");
File root = new File("file://192.168.1.2/file.txt");
どうもありがとう。