从 LIST 文件格式创建 xml 文件
我已经从 imdb 数据库下载了一些 .LIST 文件,我想将它们用于一些社交网络分析原因(参考文献研究),使用 SNA 软件(其中输入可以是 xml 或 csv)...
I have downloaded some .LIST file from imdb database, and I wanna use them for some social network analyses reason (research with references), using a SNA software (where input can be in xml or csv)...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些库可能会帮助您:
http://libimdb.sourceforge.net/
http://libimdb.cvs.sourceforge.net/viewvc/libimdb/
https://trac.neo4j.org/browser /examples/imdb/trunk/src/main/java/org/neo4j/examples/imdb/parser?rev=2559
These libraries may help you:
http://libimdb.sourceforge.net/
http://libimdb.cvs.sourceforge.net/viewvc/libimdb/
https://trac.neo4j.org/browser/examples/imdb/trunk/src/main/java/org/neo4j/examples/imdb/parser?rev=2559
这是我制作的相关内容: sed 文件“movies2xml.sed”:
xml 标记名有点简洁,但是(14 年 6 月)有 2,936,679 个条目,共 334MB ..
我像这样处理 imdb zip 文件:
然后使用此 XSD 验证此 xml 输出:
我希望在某个地方有一个 xml 到 json 转换器,供信徒使用。
Here's something relevant I cooked up : A sed file 'movies2xml.sed':
The xml tagnames are a little terse, but (in june '14) there's 2,936,679 entries, which makes up 334MB ..
I process the imdb zip-file like this:
This xml output then validates with this XSD :
I expect there's an xml-to-json converter out there somewhere, for the believers ..