关于如何在asp.net中获取IP地址的地理位置,我已经看到很多关于 stackoverflow 的问题和答案,但是......
如何在 winforms 中获取IP地址?
我正在处理 C#winform 应用程序,我需要向用户显示其 IP地址和其位置。 我能够显示用户的本地,外部IP地址,但我找不到任何显示位置的方法。
任何机构都知道我是否可以使用任何WebRequest
或任何其他解决方案执行此操作?
编辑:我可以通过以下方法完成任务。
将IP地址发送到显示IP地址位置的站点。(例如www.whatismyipaddress.com)
获取源代码。
解析其代码并使用string
操作来获取位置。
但我知道这不是好方法,好像网站已关闭或移动或源代码中的任何更改都会使我的代码无用。
答案 0 :(得分:4)
答案 1 :(得分:1)
IpInfo是与IP相关的很好的服务。他们也有a nice API。
在下面的代码中,我将向此服务发出Web请求,它将返回IP信息。
这将返回您的IP信息:
public static string GetLocation(string ip)
{
var res = "";
WebRequest request = WebRequest.Create("http://ipinfo.io/" + ip);
using (WebResponse response = request.GetResponse())
using (StreamReader stream = new StreamReader(response.GetResponseStream()))
{
string line;
while ((line = stream.ReadLine()) != null)
{
res += line;
}
}
return res;
}
使用它的一个例子是:
Console.WriteLine (GetLocation("8.8.8.8"));
这将输出:
{ "ip": "8.8.8.8", "hostname": "No Hostname", "city": "Mountain View", "region": "California", "country": "US", "loc": "37.3860,-122.0838", "org": "AS15169 Google Inc.", "postal": "94035"}
答案 2 :(得分:0)
享受
For querying GeoIP information about your own IP:
http://ip-json.rhcloud.com/json
http://ip-json.rhcloud.com/xml
http://ip-json.rhcloud.com/csv
For querying GeoIP information about IP address:
http://ip-json.rhcloud.com/json/64.27.57.24
http://ip-json.rhcloud.com/xml/64.27.57.24
http://ip-json.rhcloud.com/csv/64.27.57.24
For querying GeoIP information about a domain:
http://ip-json.rhcloud.com/json/www.google.com
http://ip-json.rhcloud.com/xml/www.google.com
http://ip-json.rhcloud.com/csv/www.google.com
You can use curl command in terminal:
curl ip-json.rhcloud.com
curl ip-json.rhcloud.com/ua
curl ip-json.rhcloud.com/all
curl ip-json.rhcloud.com/json
curl ip-json.rhcloud.com/xml