1

我想知道一种读取文本文件并将其内容添加到文本框中的方法。我在 PyGTK 中执行此操作,所以我需要在 Python 中获取文本,然后使用 PyGTK 将其放入文本框中,那会很棒。提前致谢!

4

1 回答 1

2

假设您的文本框是TextView

#read the contents of the file
text = open("yourfile").read()
#get the underlying TextBuffer object of the TextView and set its text
textbox.get_buffer().set_text(text)
于 2012-10-07T11:49:44.403 回答