在 Python 中复制流

发布于 2024-11-07 18:51:29 字数 358 浏览 2 评论 0原文

如何在 Python 中将一个流的内容传输到另一个流?

简单的解决方案是,

output.write(input.read())

但如果输入文件大于可用内存(甚至无限大),则会失败;当部分副本也有用时,它就不能很好地工作。基本上我正在寻找相当于 org.apache.commons.IOUtils.copy

How do I transfer the contents of a stream to another in Python?

The trivial solution would be

output.write(input.read())

but that fails if the input file is larger than the available memory (or even infinitely large); and it doesn't work well when a partial copy is useful as well. Basically I'm looking for the equivalent of org.apache.commons.IOUtils.copy.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青丝拂面 2024-11-14 18:51:29

shutil.copyfileshutil.copyfileobj 用于救援。请参阅http://docs.python.org/library/shutil.html#module-shutil

shutil.copyfile and shutil.copyfileobj for the rescue. See http://docs.python.org/library/shutil.html#module-shutil

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