程序报错undefined: IniSection

lipeng · · 1050 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

``` package ini import ( "bufio" "bytes" "io" "log" "os" "strings" "sync" ) var ( DEFAULT_SECTION string COMMENT []byte SEPARATOR []byte ) func init() { DEFAULT_SECTION = "default" COMMENT = []byte{'#'} SEPARATOR = []byte{'='} } type IniEntry struct { value interface{} } type IniConfig struct { filename string section map[string]*IniSection sync.RWMutex } func NewIniConfig(path string) *IniConfig { config := &IniConfig{path, make(map[string]*IniSection), sync.RWMutex{}} config.section[DEFAULT_SECTION] = NewIniSection() return config } func (c *IniConfig) Parse() error { file, err := os.Open("D:\\GoPoject\\initype\\src\\ini\\gconfig.ini") if err != nil { return err } c.Lock() defer c.Unlock() defer file.Close() buf := bufio.NewReader(file) section := DEFAULT_SECTION var bufRead int for { line, _, err := buf.ReadLine() bufRead = bufRead + len(line) if err == io.EOF { break } if bytes.Equal(line, []byte("")) { continue } line = bytes.TrimSpace(line) if bytes.HasPrefix(line, COMMENT) { continue } if bytes.HasPrefix(line, []byte("[")) && bytes.HasSuffix(line, []byte("]")) { section = string(line[1 : len(line)-1]) section = strings.ToLower(section) if _, ok := c.section[section]; !ok { c.section[section] = NewIniSection() } } else { pair := bytes.SplitN(line, SEPARATOR, 2) key := pair[0] val := pair[1] if _, ok := c.section[section]; !ok { c.section[section] = NewIniSection() } log.Println(key, val) c.section[section].addEntry(string(key), string(val)) } } return nil } func (c *IniConfig) RemoveSection(key string) error { return nil } func (c *IniConfig) GetString(k string) string { s := strings.Split(k, ":") var sec string var key string if len(s) == 1 { sec = DEFAULT_SECTION key = s[0] log.Println(sec, key) } else { sec = s[0] key = s[1] log.Println(sec, key) } if v, ok := c.section[sec].getEntry(key).(string); ok { return v } return "" } ``` 找的代码 一直报错不知道怎么解决

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1050 次点击  
加入收藏 微博
5 回复  |  直到 2017-06-21 09:22:22
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传