├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── release.yml │ └── renew.yml ├── .gitignore ├── .whitesource ├── IP2LOCATION-LITE-DB11.BIN.ZIP ├── IP2LOCATION-LITE-DB11.IPV6.BIN.ZIP ├── LICENSE ├── README.md ├── README_zh.md ├── doc └── logo.png ├── pom.xml └── src ├── main └── java │ └── net │ └── renfei │ └── ip2location │ ├── IP2Location.java │ ├── IPResult.java │ ├── IPTools.java │ ├── MetaData.java │ └── package-info.java └── test └── java └── net └── renfei └── ip2location └── IP2LocationTests.java /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/renew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/.github/workflows/renew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | target/ -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/.whitesource -------------------------------------------------------------------------------- /IP2LOCATION-LITE-DB11.BIN.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/IP2LOCATION-LITE-DB11.BIN.ZIP -------------------------------------------------------------------------------- /IP2LOCATION-LITE-DB11.IPV6.BIN.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/IP2LOCATION-LITE-DB11.IPV6.BIN.ZIP -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/README_zh.md -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/doc/logo.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/net/renfei/ip2location/IP2Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/src/main/java/net/renfei/ip2location/IP2Location.java -------------------------------------------------------------------------------- /src/main/java/net/renfei/ip2location/IPResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/src/main/java/net/renfei/ip2location/IPResult.java -------------------------------------------------------------------------------- /src/main/java/net/renfei/ip2location/IPTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/src/main/java/net/renfei/ip2location/IPTools.java -------------------------------------------------------------------------------- /src/main/java/net/renfei/ip2location/MetaData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/src/main/java/net/renfei/ip2location/MetaData.java -------------------------------------------------------------------------------- /src/main/java/net/renfei/ip2location/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/src/main/java/net/renfei/ip2location/package-info.java -------------------------------------------------------------------------------- /src/test/java/net/renfei/ip2location/IP2LocationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renfei/ip2location/HEAD/src/test/java/net/renfei/ip2location/IP2LocationTests.java --------------------------------------------------------------------------------