美文网首页
java中读写文件的方法

java中读写文件的方法

作者: f155b8f6e0ac | 来源:发表于2019-12-11 21:15 被阅读0次

读文件

方法一:Files.readAllLines(Path path, Charset cs)
返回类型:List<String>
示例:

try { 
        List<String> contentList = Files.readAllLines('XXXXX',StandardCharsets.UTF_8)
        StringBuilder sb = new StringBuilder();
        for(int i = 0; i<contentList.size(); i++) {
            sb.append(contentList.get(i));
        }
    }catch (IOException e) {
            log.error(e);
            return;
    }

方法二:Files.readAllBytes(Path path) //默认是UTF-8编码
返回值:byte[] //可以将其转换成字符串
示例:

try { 
        String content = new String(Files.readAllBytes('XXXXX'));
    }catch (IOException e) {
                log.error(e);
                return;
    }

一行代码即可完成读文件

写文件

方法:Files.write(Path path,List<string> out, Charset cs) //输入的参数也可以是String类型
返回类型: Path
示例:

String content = "Hello World !!";
Files.write(Paths.get("c:/output.txt"), content.getBytes(),StandardCharsets.UTF_8);

相关文章

网友评论

      本文标题:java中读写文件的方法

      本文链接:https://www.haomeiwen.com/subject/iybagctx.html