邮政编码到城市/州查找 XML 文件?
尝试找到一个可以用来代替查找数据库表的 XML 文件,直到我们将网络托管切换到正确的数据库为止。
任何人都可以向我推荐一个 XML 文件,其中的元素的子元素具有邮政编码、州和城市吗? 例如:
<zip code="98117">
<state>WA</state>
<city>Seattle</state>
</zip>
或者
<entry>
<zip>98117</zip>
<state>WA</state>
<city>Seattle</city>
</entry>
我将在 C# 中使用 LINQ 来查询此数据。
Trying to find an XML file I can use in lieu of a look-up database table until we get our web hosting switched over to the right DB.
Can anyone refer me to an XML file with elements whose children have zipcodes, states, and cities? E.g.:
<zip code="98117">
<state>WA</state>
<city>Seattle</state>
</zip>
Or
<entry>
<zip>98117</zip>
<state>WA</state>
<city>Seattle</city>
</entry>
I'll be using LINQ in C# to query this data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看这个,它提供了几种不同的免费的。
https://stackoverflow.com/questions/24471/zip-code-database
Check out this one, it provides several different free ones.
https://stackoverflow.com/questions/24471/zip-code-database
有一个免费的邮政编码数据库位于:
http://www.populardata.com
我相信它是一个 . CSV 文件,但您可以很容易地将其转换为 XML 文件。
There is a free zip code database located at:
http://www.populardata.com
I believe its a .CSV file but you could convert it to a XML file quite easily.
以下是根据输入的邮政编码执行 city.state 自动填充的代码。
//]]>
这是 API - http://www.zipcodeapi.com/Examples#example1。
Here is code to do city.state autofill based on a zipcode entered.
//]]>
Here is the API - http://www.zipcodeapi.com/Examples#example1.
您可以通过以下方式请求 XML 中的内容 要直接以 XML 形式返回数据,您可以在请求中使用 .xml 格式。
https://www.zipcodeapi.com/rest/RbdapNcxbjoCvfCv4N5iw B3L4beZg017bfiB2u9eOxQkMtQQgV9NxdyCoNCENDMZ/info.xml /90210/ Degrees
将通过
Api 文档进行响应,位于 https://www.zipcodeapi.com/API< /a>
You can request the content in XML via To get the data back directly in XML you can use .xml in the format in the request.
https://www.zipcodeapi.com/rest/RbdapNcxbjoCvfCv4N5iwB3L4beZg017bfiB2u9eOxQkMtQQgV9NxdyCoNCENDMZ/info.xml/90210/degrees
Will respond with
Api docs are at https://www.zipcodeapi.com/API