- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的最终目标是获取与提供的 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 网络服务文档”,因此没有任何帮助。
在他们的 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 数据库文件为何对我不起作用的更多信息。
最佳答案
您使用的库用于读取 GeoIP2 的二进制数据库文件。 CSV 文件供人们加载到数据库中(或他们希望使用 CSV 的任何其他方式)。
关于java - MaxMind 从 IP 地址获取 Lat/Lng,InvalidDatabaseException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28841456/
这个问题在这里已经有了答案: Measuring the distance between two coordinates in PHP (13 个答案) 关闭 9 年前。 我在数据库中存储了 fi
我想在 Google map 标记完成拖动时检索正确的 lat/lng。 但是对于同一个精确点,它给出了两个不同的(非常近似)坐标。 同一掉落的示例结果: evt.latLng:39.82213542
我有一个 mysql 插入语句,当系统无法获取用户的纬度/经度时,该语句会中断。sql 是这样的: INSERT INTO users(user_email, first_name , last_na
我有一个页面,用户可以在“邮政编码”字段中输入他们的地址。我还有一个“检测位置”按钮,可以对用户地址进行地理定位。当他们单击此按钮时,他们的城市名称和邮政编码将回显到“邮政编码”字段中,并且纬度和经度
我有两个表:一个 map 表,其中包含大约 3,000 个纬度/经度对,代表现实世界的“标记”位置;还有一个建筑物表,其中有数百个纬度/经度对,也代表真实世界的建筑物位置。我想做的是获取所有建筑物可见
假设我有一个 lat lng 坐标,我想把它放在一个 10 公里宽的正方形的中心,然后得到最小的 lat/lng 和最大的 lat/lng。 有没有一种简单的方法可以做到这一点已经存在? 最佳答案 如
在过去的几天里,我一直在努力寻找这个问题的答案。我有一个 GPS 数据路线表。和一张积分表。我需要的是一个 MySql 语句,对于给定的路线,将告诉我两个端点的 Point.Name。我可以写 4 个
我见过这个问题的许多变体,但我无法将他们的答案与我的具体需求联系起来。 我有几组 3 纬度/经度坐标对。任何集合中的坐标彼此之间都在几公里之内。 对于每个集合,我想将坐标转换为 x/y 值,以便我可以
我正在为 React 创建一个节点模块,只是为了尝试一下并了解更多信息。但我面临一个问题。我想让这个模块没有任何依赖项(React 除外),但我也想在我的模块中包含 I18n。我开始像这样的文件结构:
我使用mapbox/leaflet来显示人体图片而不是常规 map 。 我正在使用传单绘制,我需要能够创建一个圆并在保持其半径的同时移动它。然而,当我将其移向 map /屏幕底部时,大小呈指数级增加。
大家好,我目前正在 android 中使用 DH key 交换开发客户端服务器应用程序。我在客户端将字符串转换为 long 时遇到问题,奇怪的是该转换适用于前 2 个变量 pValue 和 gValu
我试图从数据库中的多点列获取值(纬度和经度)。我有针对点的有效解决方案,但找不到针对多点的解决方案。 我有一个点及其坐标的SQL查询,对于多点及其点我需要这样的东西: SELECT ASWKT(poi
我有一个保存地址的 mysql 记录数据库。我想迭代这些地址并获取每个地址的地理编码 lat 和 lng 并将它们放入数据库中。我正在使用 php。但是当我运行此代码时,我收到一条错误消息“FastC
我想要提取纬度。和来自字符串的经度值,如下所示: var data = "(-20.210696507479017, -70.14000177383423),(-20.21202551027535,
给定具有经纬度位置的地点数据库,例如 40.8120390、-73.4889650,我如何找到特定位置给定距离内的所有位置? 从数据库中选择所有位置,然后一个一个地遍历它们,获取与起始位置的距离,看它
我计划在我的一个应用程序中使用谷歌地图“containsLocation()”API。文档链接是 - https://goo.gl/4BFHCz 我正在使用相同的示例。这是我的代码。
我有 4 个变量: $southwest_lat、$southwest_lng、$northeast_lat、$northeast_lng 我还有一个数据库表,其中包含以下字段:名称、纬度和经度。 /
我正在尝试将标记数据放入表单上的隐藏字段中。我不确定为什么这不起作用,它一定是我的 js 语法中的某些内容: var initialLocation; var siberia = new google
我正在使用 Google map 函数 map.getCenter().lng(); 它返回 lng 值,但一旦我尝试对 lng 值执行任何操作,我就会收到错误,例如: var lang = sawd
假设我有几个带有 4 个坐标对(仅长/纬度)的边界框,每个坐标对代表一个方框的 4 个角。我如何检查其中两个框是否相交? 我知道我可以使用java.awt.Rectangle来检查两个矩形是否相交,但
我是一名优秀的程序员,十分优秀!