2017年5月13日
摘要: package main; import ( "os" "fmt" "strconv" ) func main() { //打开文件,返回文件指针 file, error := os.Open("./1.txt"); if error != nil { fmt.Println(error); } fmt.Println(file); file.Close(); /... 阅读全文
posted @ 2017-05-13 16:30 怀素真 阅读(23502) 评论(0) 推荐(4) 编辑