在使用 ftplib 包开发 Python FTP 客户端时,您可能会遇到包中某些函数缺少字符串输出的情况而是打印到标准输出(stdout)。为了解决这一挑战,将 stdout 重定向到可以方便读取的对象就变得必要。
虽然通过 open() 进行基于文件的重定向是一种选择,但不利用本地驱动器的替代方法是更有效率。 Java 的 BufferedReader 提供了一个将缓冲区包装到流中的有价值的示例。
要在 Python 中实现类似的功能,请采用以下方法:
from cStringIO import StringIO # Python3 use: from io import StringIO import sys old_stdout = sys.stdout sys.stdout = mystdout = StringIO() # Execute code that would normally print to stdout ... sys.stdout = old_stdout # Obtain the captured output as a string from mystdout.getvalue()
通过将 stdout 重定向到 StringIO 实例,您可以可以在需要时以字符串形式捕获和检索输出。该技术提供了更大的灵活性,并且无需外部文件的参与。
以上是如何将 Python 的标准输出重定向到字符串缓冲区?的详细内容。更多信息请关注PHP中文网其他相关文章!