使用 Java 在文件的每个行首和行尾附加一个字符
你能帮我解决这个问题吗?
我想在文本文件中每行的每个开头和结尾处放置一些字符/文本,
Hi there
Welcome
例如
sometext Hi there sometext
sometext Welcome sometext
感谢
can you help me with this problem.
I want to put some characters/text at every beginning and end of each line in my text file e.g.
Hi there
Welcome
to
sometext Hi there sometext
sometext Welcome sometext
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Java 的
String.format
方法。当您使用 BufferedReader的
ReadLine
方法只要调用String.format就行了。You could use Java's
String.format
method.When you read the textfile with, say, a BufferedReader's
ReadLine
method just call String.format on the line.