本文實例講述了Go語言清除文件中空行的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
這里使用Go語言讀取源文件,去掉空行,并寫到目標文件
復制代碼 代碼如下:
/**
* Created with IntelliJ IDEA.
* User: hyper-carrot
* Date: 12-8-31
* Time: 下午4:04
* To change this template use File | Settings | File Templates.
*/
package main
import (
"os"
"bufio"
"fmt"
)
func DeleteBlankFile(srcFilePah string, destFilePath string) error {
srcFile, err := os.OpenFile(srcFilePah, os.O_RDONLY, 0666)
defer srcFile.Close()
if err != nil {
return err
}
srcReader := bufio.NewReader(srcFile)
destFile, err := os.OpenFile(destFilePath, os.O_WRONLY|os.O_CREATE, 0666)
defer destFile.Close()
if err != nil {
return err
}
var destContent string
for {
str, _ := srcReader.ReadString('\n')
if err != nil {
if err == io.EOF {
fmt.Print("The file end is touched.")
break
} else {
return err
}
}
if 0 == len(str) || str == "\r\n" {
continue
}
fmt.Print(str)
destFile.WriteString(str)
}
return nil
}
func main() {
DeleteBlankFile("e:\\src.txt", "e:\\dest.txt")
}
希望本文所述對大家的Go語言程序設計有所幫助。
您可能感興趣的文章:- go語言實現(xiàn)文件分割的方法
- Go語言寫入字符串到文件的方法
- Go語言壓縮和解壓縮tar.gz文件的方法
- Go語言判斷指定文件是否存在的方法
- Go語言文件操作的方法
- go語言檢測文件是否存在的方法