GithubHelp home page GithubHelp logo

Comments (3)

yescallop avatar yescallop commented on July 18, 2024

Extremely hard work. These data of code corresponding are very scattered, hence the impossibility of complete and accurate corresponding work.

from areacodes.

mwxmmy avatar mwxmmy commented on July 18, 2024

java代码,根据区划名称模糊查找设置当前最新的区划代码,误差较大,勉强使用
List<Areacodes> list = service.list(); for (Areacodes areacodes : list) { if("弃用".equals(areacodes.getStatus())){ String name = areacodes.getName(); String province = areacodes.getProvince(); String s = name.substring(name.length() - 1, name.length()); if(s.equals("县") || s.equals("市")|| s.equals("区")){ name = name.substring(0,name.length()-1); } String finalName = name; List<Areacodes> collect = list.stream() .filter(a -> a.getStatus().equals("启用")) .filter(a -> a.getProvince().equals(province)) .filter(a -> a.getName().startsWith(finalName)) .limit(1) .collect(Collectors.toList()); if(collect.size()>0){ areacodes.setPid(collect.get(0).getCode()); service.saveOrUpdate(areacodes); System.out.println("code"+areacodes.getCode()+"设置pid为"+areacodes.getPid()); } } }

from areacodes.

yescallop avatar yescallop commented on July 18, 2024

我刚刚翻新了整个 repo,写了一套用于对应新旧代码的规范。这之后还有许多工作要做,欢迎各位参与其中!

from areacodes.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.