2013-09-30 63 views
2

是否可以在HttpGet中使用管道字符?HttpGet和管道字符

我有一個用管子隔開的latlng列表,例如, 53.42290885462988,-1.4404749870300293|53.39965626194152,-1.4247894287109375用於谷歌distancematrix,但我得到一個非法字符錯誤的管道字符。

回答

1
I get an illegal character error on the pipe character. 

您需要encode the | (Pipe Charcter)

所以使用URLEncoder.encode("|","UTF-8");

Docs