我的最终目标是获取与提供的IP地址相关联的纬度,经度和国家/地区。我正在使用Java和MaxMind GeoIP2 Java API。我更喜欢不使用他们的webapi,因为我需要快速处理时间。

谁能告诉我为什么我在MaxMind api调用中关联的函数(出现错误后显示的代码)时收到此错误?

我不确定什么是MaxMind DB元数据标记。它抱怨我从MaxMind网站上获取的文件。我认为这是一个有效的MaxMind DB文件。

com.maxmind.db.InvalidDatabaseException: Could not find a MaxMind DB metadata marker in this file (GeoLite2-City-Blocks-IPv6.csv). Is this a valid MaxMind DB file?
at com.maxmind.db.Reader.findMetadataStart(Reader.java:231)
at com.maxmind.db.Reader.<init>(Reader.java:82)
at com.maxmind.db.Reader.<init>(Reader.java:74)
at com.maxmind.geoip2.DatabaseReader.<init>(DatabaseReader.java:41)
at com.maxmind.geoip2.DatabaseReader.<init>(DatabaseReader.java:31)
at com.maxmind.geoip2.DatabaseReader$Builder.build(DatabaseReader.java:126)
at com.tutelatechnologies.tapfortap.server.maxmind.MaxMindLookUp.maxMindLookup(MaxMindLookUp.java:20)
at com.tutelatechnologies.tapfortap.server.cidlaclookup.T4TUtilitiesTest.testMaxMindLookUpTest(T4TUtilitiesTest.java:23)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)


我遵循了MaxMind网站上“数据使用情况”部分的说明和示例代码:http://maxmind.github.io/GeoIP2-java/

我选择使用从此处获得的GeoLite2 csv数据库:http://dev.maxmind.com/geoip/geoip2/geolite2/

我的代码:

public class MaxMindLookUp {

public static final void maxMindLookup(final String ipaddress) {
    File db = new File(
            "src/main/java/com/tutelatechnologies/tapfortap/server/maxmind/GeoLite2-City-Blocks-IPv6.csv");
    try {
        DatabaseReader reader = new DatabaseReader.Builder(db).build();
        InetAddress ip = InetAddress.getByName(ipaddress);

        CityResponse response = reader.city(ip);
        Location loc = response.getLocation();

        Double lat = loc.getLatitude();
        Double lng = loc.getLongitude();
        Integer acc = loc.getAccuracyRadius();

        System.out.println("lat=" + lat + "\nlng=" + lng + "\nacc=" + acc);

    } catch (GeoIp2Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();

    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

}


注意:为了运行上面的代码,您需要在Maven Dependencies部分中添加一个插件。

 <dependency>
    <groupId>com.maxmind.geoip2</groupId>
    <artifactId>geoip2</artifactId>
    <version>2.1.0</version>
</dependency>


对于SO上的这个确切错误,我并没有遇到太多。我已逐步调试程序,错误发生在此行:

DatabaseReader reader = new DatabaseReader.Builder(db).build();


这使我相信我从站点下载的数据库出了问题。

此页面底部的例外标题(http://maxmind.github.io/GeoIP2-java/)提供了一个死链接'GeoIP2 Precision Web服务文档',所以没有帮助。

在其Java API的“异常”部分中似乎没有与此异常相关的任何内容:http://maxmind.github.io/GeoIP2-java/doc/v2.1.0/

更新

根据规范中的DatabaseReader.Builder()。build()描述:http://maxmind.github.io/GeoIP2-java/doc/v2.1.0/我认为问题出在读数据库。我不确定如何解决此问题。

更新

我可以使用二进制数据库文件(GeoLite2-City.mmdb)使它正常工作。如果有人对为什么CSV db文件不适合我的更多信息,我将保留此问题。

最佳答案

您正在使用的库用于读取GeoIP2的二进制数据库文件。 CSV文件供人们加载到数据库中(或其他他们要使用CSV的方式)。

07-27 21:08