java 读写文件

读文件

 public static void readFileByLines(String fileName) {
        File file = new File(fileName);
        BufferedReader reader = null;
        try {
            System.out.println("以行为单位读取文件内容,一次读一整行:");
            reader = new BufferedReader(new FileReader(file));
            String tempString = null;
            int line = 1;
            // 一次读入一行,直到读入null为文件结束
            while ((tempString = reader.readLine()) != null) {
                // 显示行号
                System.out.println("line " + line + ": " + tempString);
                line++;
            }
            reader.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }

写文件

final String esFilePath = "/Users/es_index.txt";

try (FileWriter fileWriter = new FileWriter(filepath)) {
            fileWriter.append(content);
        }catch (Exception e) {
            log.error("es索引名称写入文件失败");
        }
        log.info("es索引名称写入文件成功");
posted @ 2022-11-10 19:25  彬在俊  阅读(5)  评论(0编辑  收藏  举报