1、非spring项目和普通项目通用方法:
String path = Thread.currentThread().getContextClassLoader().getResource("cc/aa.txt").getPath();
2、spring项目可以用spirng自带的ResourceUtils
File file=ResourceUtils.getFile("classpath:note/aa.txt");