InvalidPathException:非法char<:>在索引4处:file:// user:password@/localhost/log/service.log

时间:2017-11-17 10:15:09

标签: spring-boot java.nio.file

我正在创建一个spring-boot Web应用程序,它必须从位于远程服务器上的日志文件中读取数据。 远程服务器上的日志文件的路径构造如下: file://user:password@/localhost/log/service.log

我使用Paths.get()方法访问日志文件。 但是我收到以下错误:

java.nio.file.InvalidPathException: Illegal char <:> at index 4: file://user:password@/localhost/log/service.log
    at sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:182) ~[na:1.8.0_77]
    at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:153) ~[na:1.8.0_77]
    at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77) ~[na:1.8.0_77]
    at sun.nio.fs.WindowsPath.parse(WindowsPath.java:94) ~[na:1.8.0_77]
    at sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:255) ~[na:1.8.0_77]
    at java.nio.file.Paths.get(Paths.java:84) ~[na:1.8.0_77]
    ...

有人能告诉我,我构建的路径是否适合读取文件? 如果不是,那应该是什么? 如果是,我该如何解决错误?

0 个答案:

没有答案