我在我的java代码中加载了一些网络路径。它没有采用与配置文件中相同的格式,缺少一个斜杠。
示例:
String path = "//abckatte.com/abc/test";
File fileobj = new File(path);
每当我在日志消息中看到fileobj
时,它都显示为/abckatte.com/abc/test
。缺少一个斜线。
我尝试添加两个斜杠。
String path = "////abckatte.com/abc/test";
然后它也无法正常工作。
答案 0 :(得分:0)
您可以使用 Apache Commons VFS 2 ,因为它可以访问多个文件系统。在本地文件application:application didFinishLaunchingWithOptions:
中将其标记为here。