3
處理http resp.Body
的最佳方式是什麼?格式爲[]uint8
而不是JSON? 我想將字節轉換爲float64
。將[] uint8轉換爲float64
這是返回值響應:
value : %!F([]uint8=[48 46 48 48 49 50 53 53 50 49])
處理http resp.Body
的最佳方式是什麼?格式爲[]uint8
而不是JSON? 我想將字節轉換爲float64
。將[] uint8轉換爲float64
這是返回值響應:
value : %!F([]uint8=[48 46 48 48 49 50 53 53 50 49])
嘗試使用ParseFloat
從strconv
包(play):
b := []uint8{48, 46, 48, 48, 49, 50, 53, 53, 50, 49}
f, err := strconv.ParseFloat(string(b), 64)
if err != nil {
// Handle parse error
}
fmt.Printf("%f\n", f) // 0.001255
真棒!謝謝。 – Alex