检测 BufferedReader 流中的 \n
我有一个看起来像这样的字符串:
"foobar\n"
我使用 BufferedReader 读取了该字符串。我需要能够检测是否存在新行。我正在使用 readLine,但我切换到 read,这样我就可以抓住 \n 但没有运气。
I have a string that looks something like this:
"foobar\n"
I read this string using a BufferedReader. I need to be able to detect whether or not there is a new line present. I was using readLine, but I switched to read so I could grab the \n but no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试了这个并且它有效:
I tried this and it works: