将 stdout 重定向到字符串缓冲区
使用 Python 的 FTP 客户端等库时,可能会遇到某些函数向 stdout 提供输出的情况而不是返回字符串值。要捕获此输出,需要将 stdout 重定向到可以保存数据的合适对象。
与 Java 的 BufferedReader 不同,Python 提供了不同的方法。 cStringIO 模块(在 Python 3 中被 io 取代)提供了一个 StringIO 类,用作内存缓冲区。此缓冲区可以有效地包裹在 stdout 等流中以拦截输出。
要实现此重定向,请按照以下步骤操作:
import sys from cStringIO import StringIO # Store the original stdout stream old_stdout = sys.stdout # Create the in-memory buffer sys.stdout = mystdout = StringIO() # Execute code that generates output normally directed to stdout # Restore the original stdout stream sys.stdout = old_stdout # Access the output via mystdout.getvalue()
通过这种方法,函数生成的输出将在 StringIO 对象 (mystdout) 中捕获,稍后可以通过使用 mystdout.getvalue() 读取其值来访问该对象。
以上是如何在 Python 中将 stdout 重定向到字符串缓冲区?的详细内容。更多信息请关注PHP中文网其他相关文章!