在IDE下调试怎么也没有发现问题,但是部署到服务器上,提示找不到资源,找了半天资料总算是找到了原因:
Jar包中的资源加载不能使用File方式,只能使用InputStream方式读取。知道原因就好解决了,如下:
try { URL url = ScoreLoadUtil.class.getClassLoader().getResource("LiangXingScoreDic");//这里不要加classpath: ,否则也是找不到 List<String> list = new ArrayList<>(); try (InputStream stream = url.openStream(); InputStreamReader isr=new InputStreamReader(stream,"utf-8"); BufferedReader br = new BufferedReader(isr)) { String line; while ((line=br.readLine())!=null){ list.add(line); } } logger.error(list.size()); for (String s : list) { String[] split = s.split("\t"); if (split.length!=2){ logger.error(s); continue; } liangXingMap.put(split[0],Float.parseFloat(split[1])); } } catch (IOException e) { logger.error(e); }
网上教程有一种说法用ResourceUtils的extractJarFileURL方法可以读取,但是试了试还是有问题,这个方法相当于把jar:xxxxx!resource给提取成xxxxxxxx,这样得到的是jar文件,并不是要加载的内容,可能是我用的方法不太对吧,不过使用InputStream的方式是没问题了。