bytes包对外提供的函数 这里将函数分为两类,一类是汇编(这种只需要明白用法就行),一类是使用代码实现的(这种需要好好学习)
// Index returns the index of the first instance of sep in s, or -1 if sep is not present in s. func Index(s, sep []byte) int {```} 这个函数内部的核心函数是bytealg.Index(),此函数属于汇编类型,用处就是返回首个存在于s中的sep实例的索引,如果不存在返回-1 // Compare returns an integer comparing two byte slices lexicographically. // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. // A nil argument is equivalent to an empty slice.
Read More →
zip 使用方法 写
// 写到文件中 src,err := os.Create("/name.zip") if err != nil{ return } w := zip.NewWriter(src) // 给写入的文件写名字,Create()函数,默认的压缩方式是deflate,需要选择压缩方式可以用CreateHeader() // Store uint16 = 0 // no compression // Deflate uint16 = 8 // DEFLATE compressed f,err := w.Create("name") if err != nil{ return } //将内容写入相应的文件中,data是二进制字节流 _,err:=f.write(data) if err != nil { return } // 写完后,需要注意关闭w w.Close() err := w.Close() if err != nil { log.Fatal(err) } 读(常用就是解压缩)
// OpenReader 打开要读取的zip,path:zip文件路径 rc ,err := zip.
Read More →