zoukankan      html  css  js  c++  java
  • 打印文件中的内容

    package intensiveexercise;

    import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.List; import java.util.stream.Stream;

    public class Q12Files {

     public static void main(String[] args) {   

    //  Path path = Paths.get("courses.txt");

    //  Stream<String> fc = null;

    //  try { //   fc = Files.lines(path);

    //   

    //   List<String> fcList = Files.readAllLines(path);

    //   

    //  } catch (IOException e) {

    // 

    //   e.printStackTrace();

    //  }

    //  fc.forEach(s -> System.out.println(s));      

    Path file=Paths.get("Q:/Users/a496006.DMN1.000/Desktop/s.txt");     

     try {    Stream<String> fc=Files.lines(file);    

    fc.forEach(s->System.out.println(s));    

    //   List<String> fcList= Files.readAllLines(file);

    //   fcList.forEach(s->System.out.println(s));  

     } catch (IOException e) {   

       e.printStackTrace();   }   

     }

    }

  • 相关阅读:
    not syncing: Attempted to kill init
    PhpStudy如何开启Apache的gzip压缩功能?
    去掉桌面图标快捷箭头
    PS中10种样式操作
    Mysql数据库报错1264
    宝塔建站
    VB错误说明
    Flash的swf文件破解
    PS快捷键
    Mysql双向同步热备份设置
  • 原文地址:https://www.cnblogs.com/mabel/p/6291898.html
Copyright © 2011-2022 走看看