摘要: package main; import ( "os" "fmt" "strconv" ) func main() { //打开文件,返回文件指针 file, error := os.Open("./1.txt"); if error != nil { fmt.Println(error); } f 阅读全文
posted @ 2018-02-06 10:00 craneboos 阅读(415) 评论(0) 推荐(0) 编辑