Browse Source

修复合并

zhanghan 1 week ago
parent
commit
d3e596f88c

+ 1 - 1
src/main/java/com/skyversation/poiaddr/util/address_spliter/ShanghaiAddressSplitUtil.java

@@ -83,7 +83,7 @@ public class ShanghaiAddressSplitUtil {
         Map<String, List<String>> districtToStreetMap = new HashMap<>();
         Map<String, List<String>> streetToCommunityMap = new HashMap<>();
 
-        String file = "excel/上海市县乡记录.xlsx";
+        String file = "上海市县乡记录.xlsx";
         InputStream is = ShanghaiAddressSplitUtil.class.getResourceAsStream(file);
         if (is == null) is = ShanghaiAddressSplitUtil.class.getResourceAsStream("/" + file);
         if (is == null) throw new RuntimeException("无法找到" + file);