#行都

Java使用FileReader(file)、readLine()读取文件,以行为单位,一次读一行,一直读到null时结束,每读一行都显示行号。

//Java使用FileReader(file)、readLine()读取文件,以行为单位,一次读一行,一直读到null时结束,每读一行都显示行号。publicstaticvoidreadFileByLines(StringfileName){Filefile=newFile(fileName);BufferedRea...

shell 给文件每一行都添加指定字符串

 [admin@localhostfile]$catfilehello0hello1hello2hello3hello4[admin@localhostfile]$cattest.sh#!/bin/bashwhilereadlinedoecho'buy'$linedone<file>>fil...