1
File file = new File("\\10.200.64.8\\home\\rbts\\IBST000826");
FileInputStream fin = new FileInputStream(file);

エラーを出している、私も試してみました

File file = new File("file:\\10.200.64.8\\home\\rbts\\IBST000826"); 

File file = new File(new URI("file:////10.200.64.8/home/rbts/IBST000826"));

ファイルはLinuxマシン上にあり、Windowsマシン上でアクセスしています。任意の機関が提案または解決策を提供できますか。

java.io.FileNotFoundException: \10.200.64.8\home\rbts\IBST000826 (The system cannot find the path specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at com.sapphire.oracle.osb.hbl.isohandler.utils.ISO_MessageUtils.getFileContent(ISO_MessageUtils.java:350)
    at com.sapphire.oracle.osb.hbl.isohandler.utils.ISO_MessageUtils.main(ISO_MessageUtils.java:366)
4

1 に答える 1