问题描述
在项目中,使用到了resources
文件下的数据文件,使用的是File
方式:
// ResourceUtils.CLASSPATH_URL_PREFIX 值为:"classpath:"
// cityProperties.getPath(); 为要使用的文件地址
String path = ResourceUtils.CLASSPATH_URL_PREFIX + cityProperties.getPath();
File citys = ResourceUtils.getFile(path);
if (!citys.exists())