Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要使用 Free Marker API 将数据写入文本文件,但当该行遇到 255 个字符时,应将剩余字符打印到下一行。
Free Marker 是否支持此功能?
由于您可以将任何内容传递java.io.Writer给Template.process(或Environment.process),因此您可以传递一个写入文件并在行达到 255 个字符时插入 CR 的内容。当然,您必须实施Writer。
java.io.Writer
Template.process
Environment.process
Writer