在Java中使用编码和readLine()打开文件的最短方法?

发布于 2024-12-24 20:24:02 字数 231 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹泡泡o 2024-12-31 20:24:02

使用 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 then scan.nextLine() which returns a String.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文