使用 google app engine 进行文件 I/O
我想在 html 文件中提供一个字段,以便人们可以上传要导入到数据存储的 XML 文件。上传后,如何在应用程序引擎内读取和处理该文件? (我不想用 blobstore 存储文件。只想读取、处理并扔掉它)谢谢
I want to provide a field in my html file so that people can upload their XML files to be imported to the datastore. How can I read and process this file inside the app engine once it is uploaded ? (I dont want to store the file with blobstore. Just want to read, process and throw it away) Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您需要一个类似文件的对象来与作用于文件的库一起使用时,请使用 StringIO。 (尽管我相信大多数 XML 解析器会很乐意接受字符串而不是需要类似文件的对象。)
Use a
StringIO
when you need a file-like object for use with libraries that act on files. (Although I believe most XML parsers will happily accept a string instead of requiring a file-like object.)