背景 最近同事在写一个解析程序的时候,需要读取一个资源库文件,本地测试无问题,但在服务器运行时候却报错,找不到文件。 异常信息 java.io.FileNotFoundException: class path resource [phone.dat] cannot be resolved to a…
Leave a Comment标签:文件
maven 服务器在断网下产生了很多.last的文件. 想在服务器下批量删除. find / -name “*.last*” |xargs rm -rf 会删除所有以last标示开始扩展文件。操作的时候先: find / -name “*.last*”…
Leave a Comment