使用 google app engine 进行文件 I/O

发布于 2024-10-28 15:45:20 字数 110 浏览 2 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

年少掌心 2024-11-04 15:45:20

当您需要一个类似文件的对象来与作用于文件的库一起使用时,请使用 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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文