尽管字符串是有效的 UTF8,但字节序列无效

In0*_*enT 0 postgresql go pq

我正在尝试向 postgres 批量导入程序写入 txt。该代码当前崩溃,因为应插入到 postgres 的字符串不是有效的 UTF8:pq: invalid byte sequence for encoding UTF8: 0x00

在我的代码中,我检查字符串是否是有效的 UTF8。

我缺少什么?

代码:

for {
        line, more := <-lineChannel

        splitLine := strings.SplitN(line, ":", 2)

        if len(splitLine) == 2 {
            if utf8.Valid([]byte(splitLine[0])) && utf8.Valid([]byte(splitLine[1])) {
                lineCount++
                _, err = stmt.Exec(splitLine[0], splitLine[1])

                if lineCount%int64(copySize) == 0 {

                    _, err = stmt.Exec()
                    if err != nil {
                        log.Fatal("Failed at stmt.Exec", err)
                    }

                    err = stmt.Close()
                    if err != nil {
                        log.Fatal("Failed at stmt.Close", err)
                    }

                    err = txn.Commit()
                    if err != nil {
                        log.Fatal("failed at txn.Commit", err)
                    }

                    txn, err = db.Begin()
                    if err != nil {
                        log.Fatal("failed at db.Begin", err)
                    }

                    stmt, err = txn.Prepare(pq.CopyIn("pwned", "username", "password"))
                    if err != nil {
                        log.Fatal("failed at txn.Prepare", err)
                    }

                    if lineCount%(int64(copySize)*10) == 0 {
                        log.Printf("Inserted %v lines", lineCount)
                    }
                }

                if err != nil {
                    log.Println("error:", splitLine[0], splitLine[1])
                    log.Fatal(err)
                }
            }
Run Code Online (Sandbox Code Playgroud)

编辑:产生错误的行:

字节[]:[116 109 97 105 108 46 99 111 109 58 104 117 115 104 112 117 112 112 105 101 115 108 111 118 101]

线:username@hotmail.whatever:hushpuppieslove

splitLine[0] + splitLine[1]:username@hotmail.whatever hushpuppieslove

Jer*_*emy 6

0x00 是空字符,postgres 不允许在字符串中出现这种情况。来自文档

不允许使用 NULL (0) 字符,因为文本数据类型无法存储此类字节。

您需要去掉空字符。

  • 您实际上尝试从输入中删除 0x00 吗?例如: `strings.Replace(line, "\u0000", "", -1)` (4认同)