import "compress/bzip2"
bzip2包实现bzip2的解压缩。
type StructuralError string
当bzip2数据的语法不合法时,会返回本类型错误。
func (s StructuralError) Error() string
func NewReader(r io.Reader) io.Reader
NewReader返回一个从r读取bzip2压缩数据并解压缩后返回给调用者的io.Reader。