是否可以在HttpGet中使用管道字符?
我有一个用管道分隔的latlng列表,例如53.42290885462988,-1.4404749870300293|53.39965626194152,-1.4247894287109375
与google distancematrix一起使用,但我在管道符号上出现非法字符错误。
答案 0 :(得分:1)
I get an illegal character error on the pipe character.
您需要encode the | (Pipe Charcter)
因此请使用URLEncoder.encode("|","UTF-8");