如何使用 MaxMind 的 GeoIP 数据库来确定位置?

2023-05-27Java开发问题
7

本文介绍了如何使用 MaxMind 的 GeoIP 数据库来确定位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

所以,我在上一个问题中被告知我可以使用 MaxMind 提供的 数据库来确定位置.

So, I was told in my previous question that I can use the databases provided by MaxMind to determine locations.

所以,我从他们的网站下载了他们的数据库.它们是 csv 文件并在 Excel 中打开.

So, I got their databases downloaded from their site. They are csv files and open up in Excel.

InetAddress ip = InetAddress.getLocalHost() 是我获取计算机 IP 的方式.从那里我做 String justIP = ip.getHostAddress()

InetAddress ip = InetAddress.getLocalHost() is how I get the IP of my computer. From there I do String justIP = ip.getHostAddress()

我的问题是:

  • 如何使用我刚刚下载的数据库将 justIP 解析为城市位置???

  • 我对此很陌生,因此将不胜感激.

    My question is:

  • How do I resolve justIP to a city location using the DB I just downloaded ???

  • I am new to this so a little help will be appreciated.

    其中一个文件包含三列.startIPNumendIPNumlocID 我不知道这些是做什么的,但我猜 locID 映射到一个城市和国家在另一个文件中的位置.

    One of the files has three columns. startIPNum, endIPNum and locID I do not know what these do but I guess locID maps to a city and country location in the other file.

    推荐答案

    你试过 Maxmind 的 Java 例子吗?http://dev.maxmind.com/geoip/downloadable#Java-8
    有关字段说明,请参见 http://dev.maxmind.com/geoip/csv

    Did you tried the Java examples from Maxmind? http://dev.maxmind.com/geoip/downloadable#Java-8
    And see http://dev.maxmind.com/geoip/csv for field descriptions

    这篇关于如何使用 MaxMind 的 GeoIP 数据库来确定位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    The End

    相关推荐

    如何使用 JAVA 向 COM PORT 发送数据?
    How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)...
    2024-08-25 Java开发问题
    21

    如何使报表页面方向更改为“rtl"?
    How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)...
    2024-08-25 Java开发问题
    19

    在 Eclipse 项目中使用西里尔文 .properties 文件
    Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)...
    2024-08-25 Java开发问题
    18

    有没有办法在 Java 中检测 RTL 语言?
    Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)...
    2024-08-25 Java开发问题
    11

    如何在 Java 中从 DB 加载资源包消息?
    How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)...
    2024-08-25 Java开发问题
    13

    如何更改 Java 中的默认语言环境设置以使其保持一致?
    How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)...
    2024-08-25 Java开发问题
    13