Text File processing in Jython is as simple as 3 liners of open(),readlines/writelines (taking a list) and close().
Jython 中文本文件的处理只有简单的三行代码:open()、readlines/writelines (taking a list) 和 close()。
2
The BufferedReader object has access to several useful methods, such as isatty, peek, raw, readinto, readline, readlines, seek, seekable, tell, writable, write, and writelines, to name a few.