|
|
|
@ -45,7 +45,7 @@ public class SchoolCountSummary {
|
|
|
|
|
if (configFiles != null) {
|
|
|
|
|
for (File configFile : configFiles) {
|
|
|
|
|
// 从文件名中提取年份
|
|
|
|
|
String year = configFile.getName();
|
|
|
|
|
String year = configFile.getName().substring(0,4);
|
|
|
|
|
log(String.format("开始处理年份:%s", year));
|
|
|
|
|
|
|
|
|
|
// 读取配置文件
|
|
|
|
|