针对这本书做了一些细致化的改进
This commit is contained in:
160
7.5.md
160
7.5.md
@@ -1,7 +1,153 @@
|
||||
# 7.5 小结
|
||||
这一章给大家介绍了一些文本处理的工具,包括XML、JSON、正则和模板技术,XML和JSON是数据交互的工具,通过XML和JSON你可以表达各种含义,通过正则你可以处理文本(搜索、替换、截取),通过模板技术你可以展现这些数据给用户。这些都是你开发Web应用过程中需要用到的技术,通过这个小节的介绍你能够了解如何处理文本、展现文本。
|
||||
|
||||
## links
|
||||
* [目录](<preface.md>)
|
||||
* 上一节: [模板处理](<7.4.md>)
|
||||
* 下一节: [Web服务](<8.md>)
|
||||
# 7.5 文件操作
|
||||
在任何计算机设备中,文件是都是必须的对象,而在Web编程中,文件的操作一直是Web程序员经常遇到的问题,文件操作在Web应用中是必须的,非常有用的,我们经常遇到生成文件目录,文件(夹)编辑等操作,现在我把Go中的这些操作做一详细总结并实例示范如何使用。
|
||||
## 目录操作
|
||||
文件操作的大多数函数都是在os包里面,下面列举了几个目录操作的:
|
||||
|
||||
- func Mkdir(name string, perm FileMode) error
|
||||
|
||||
创建名称为name的目录,权限设置是perm,例如0777
|
||||
|
||||
- func MkdirAll(path string, perm FileMode) error
|
||||
|
||||
根据path创建多级子目录,例如astaxie/test1/test2。
|
||||
|
||||
- func Remove(name string) error
|
||||
|
||||
删除名称为name的目录,当目录下有文件或者其他目录是会出错
|
||||
|
||||
- func RemoveAll(path string) error
|
||||
|
||||
根据path删除多级子目录,如果path是单个名称,那么该目录不删除。
|
||||
|
||||
|
||||
下面是演示代码:
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
os.Mkdir("astaxie", 0777)
|
||||
os.MkdirAll("astaxie/test1/test2", 0777)
|
||||
err := os.Remove("astaxie")
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
}
|
||||
os.RemoveAll("astaxie")
|
||||
}
|
||||
|
||||
|
||||
## 文件操作
|
||||
|
||||
### 建立与打开文件
|
||||
新建文件可以通过如下两个方法
|
||||
|
||||
- func Create(name string) (file *File, err Error)
|
||||
|
||||
根据提供的文件名创建新的文件,返回一个文件对象,默认权限是0666的文件,返回的文件对象是可读写的。
|
||||
|
||||
- func NewFile(fd uintptr, name string) *File
|
||||
|
||||
根据文件描述符创建相应的文件,返回一个文件对象
|
||||
|
||||
|
||||
通过如下两个方法来打开文件:
|
||||
|
||||
- func Open(name string) (file *File, err Error)
|
||||
|
||||
该方法打开一个名称为name的文件,但是是只读方式,内部实现其实调用了OpenFile。
|
||||
|
||||
- func OpenFile(name string, flag int, perm uint32) (file *File, err Error)
|
||||
|
||||
打开名称为name的文件,flag是打开的方式,只读、读写等,perm是权限
|
||||
|
||||
### 写文件
|
||||
写文件函数:
|
||||
|
||||
- func (file *File) Write(b []byte) (n int, err Error)
|
||||
|
||||
写入byte类型的信息到文件
|
||||
|
||||
- func (file *File) WriteAt(b []byte, off int64) (n int, err Error)
|
||||
|
||||
在指定位置开始写入byte类型的信息
|
||||
|
||||
- func (file *File) WriteString(s string) (ret int, err Error)
|
||||
|
||||
写入string信息到文件
|
||||
|
||||
写文件的示例代码
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
userFile := "astaxie.txt"
|
||||
fout, err := os.Create(userFile)
|
||||
defer fout.Close()
|
||||
if err != nil {
|
||||
fmt.Println(userFile, err)
|
||||
return
|
||||
}
|
||||
for i := 0; i < 10; i++ {
|
||||
fout.WriteString("Just a test!\r\n")
|
||||
fout.Write([]byte("Just a test!\r\n"))
|
||||
}
|
||||
}
|
||||
|
||||
### 读文件
|
||||
读文件函数:
|
||||
|
||||
- func (file *File) Read(b []byte) (n int, err Error)
|
||||
|
||||
读取数据到b中
|
||||
|
||||
- func (file *File) ReadAt(b []byte, off int64) (n int, err Error)
|
||||
|
||||
从off开始读取数据到b中
|
||||
|
||||
读文件的示例代码:
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
userFile := "asatxie.txt"
|
||||
fl, err := os.Open(userFile)
|
||||
defer fl.Close()
|
||||
if err != nil {
|
||||
fmt.Println(userFile, err)
|
||||
return
|
||||
}
|
||||
buf := make([]byte, 1024)
|
||||
for {
|
||||
n, _ := fl.Read(buf)
|
||||
if 0 == n {
|
||||
break
|
||||
}
|
||||
os.Stdout.Write(buf[:n])
|
||||
}
|
||||
}
|
||||
|
||||
### 删除文件
|
||||
Go语言里面删除文件和删除文件夹是同一个函数
|
||||
|
||||
- func Remove(name string) Error
|
||||
|
||||
调用该函数就可以删除文件名为name的文件
|
||||
|
||||
## links
|
||||
* [目录](<preface.md>)
|
||||
* 上一节: [模板处理](<7.4.md>)
|
||||
* 下一节: [小结](<7.6.md>)
|
||||
Reference in New Issue
Block a user