2014-02-06 83 views
3

處理http resp.Body的最佳方式是什麼?格式爲[]uint8而不是JSON? 我想將字節轉換爲float64將[] uint8轉換爲float64

這是返回值響應:

value : %!F([]uint8=[48 46 48 48 49 50 53 53 50 49]) 

回答

3

嘗試使用ParseFloatstrconv包(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 
+0

真棒!謝謝。 – Alex

相關問題