在哪里可以下载带有文件扩展名描述的完整 xml 文件
你好。我需要像这样的文件扩展名的描述 http ://whatis.techtarget.com/file-extension-list-A/0,289933,sid9,00.html
它应该位于 xml 文件或数据库中。结构应该像这样{类型,扩展名,描述}。我在哪里可以找到它?
HI. I need a description of file extensions like this http://whatis.techtarget.com/file-extension-list-A/0,289933,sid9,00.html
It should be in xml file or in database. The structure should be like this {Type, Extension, Description}. Where can I find it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你愿意付出一些额外的努力,答案是:你已经拥有了。
从该网站上拉下各个页面,然后抓取 HTML。我看了一眼源代码,看起来格式相当不错。此时,您可以输出为 XML 或任何您需要的格式。
如果您感觉特别雄心勃勃,则可以使用 XSLT 直接将这些页面上的 HTML 转换为更有用的内容。
If you're willing to put in some extra effort, the answer is: You already have it.
Pull down the individual pages from that website, and scrape the HTML. I glanced at the source and it looks reasonably well formatted. At that point you can then output into XML or whatever format you need.
If you're feeling especially ambitious, you can use XSLT to directly transform the HTML on those pages into something more useful.
你可能需要成功。或者联系该网站,看看他们是否会为您转储它。人们通常不会像这样保留随机资源,以便在有人询问时分发。
...虽然如果他们这样做的话那就太好了:)
You probably need to make it. Or contact that website and see if they'll dump it for you. People don't usually keep random resources around like that to give out when people ask.
... Although it would be nice if they did :)