欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux (No such file or directory)

程序员文章站 2022-03-01 14:51:14
...

java.io.FileNotFoundException: /data/users/enited/tomcat/webapps/yltms/WEB-INF/classes\static/license.xml (No such file or directory)

项目在window下可以,linux部署报错。

上面的地址可以在linux中访问一下,路径有错,根本就不存在。

1、注意不要在代码中写“/”或“\”来拼接文件的路径,windows中是“\”,linux是“/”,可使用

File.separator代替分隔符。

2、linux中严格区分大小写,windows不区分,同为Licence.xml和licence.xml,在windows中视为一个文件,在linux中则视为两个。