在Java中使用编码和readLine()打开文件的最短方法?
使用 readLine() 方法打开文件进行读取并设置其编码的最短方法是什么?
下面这行是正确且最短的吗?
BufferedReader reader =
new BufferedReader(
new InputStreamReader(
new FileInputStream(myPath), myEncoding));
What is the shortest way to open file for reading with readLine() method and with setting of it's encoding?
Is the following line correct and shortest?
BufferedReader reader =
new BufferedReader(
new InputStreamReader(
new FileInputStream(myPath), myEncoding));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Scanner,你可以这样做:
Scanner scan = new Scanner(new File(myPath), myEncoding)
然后scan.nextLine()
代码>它返回一个字符串
。With Scanner, you can do:
Scanner scan = new Scanner(new File(myPath), myEncoding)
and thenscan.nextLine()
which returns aString
.