尝试异常替代保护而不是崩溃应用程序

时间:2017-09-08 10:25:27

标签: string go runtime-error

我有一个用于抓取网址的Go应用程序。问题是它有时会崩溃并返回此错误:

panic: runtime error: slice bounds out of range
goroutine 1 [running]:
main.dom6(0x187d4140, 0x8, 0x187d4179, 0x5, 0x187c0800, 0x6, 0x13, 0x83007cb)
        /root/sswork.go:326 +0x6b
main.sub(0x187d4140, 0x8, 0x84464e0, 0x6, 0x6, 0x187d4140, 0x8, 0x187d4179, 0x5, 0x187c0800, ...)
        /root/sswork.go:298 +0xb3
main.main()
        /root/sswork.go:615 +0xccb
第298行的

是这个函数:

294: // try our list of substitutions, if one works return it
295: func sub(str string, xs []subs, u string, p string, h string) string {
296:    for _, x := range xs {
297:        if strings.Contains(str, x.pattern) {
298:            return strings.Replace(str, x.pattern, x.fn(u, p, h), 1)
299:        }
300:    }
301:    return str
302:}

如何解决我的问题,以免它再破坏应用程序?

324: // the first 6 characters of the above
325: func dom6(u string, p string, d string) string {
326:    return domfull(u, p, d)[0:6]
327: }

1 个答案:

答案 0 :(得分:2)

错误位于第326行,而不是298.为了避免此类恐慌,请在尝试索引或切片切片,数组或字符串之前执行手动索引检查。

您表示第298行的代码为:

// the first 6 characters of the above
func dom6(u string, p string, d string) string {
    return domfull(u, p, d)[0:6]
}

在尝试切片之前检查string返回的domfull()的长度,例如:

func dom6(u string, p string, d string) string {
    df := domfull(u, p, d)
    if len(df) < 6 {
        return df
    }
    return df[:6]
}