拳不离手、曲不离口 - Speak with your code, my friend, not your word.

android发起HTTP Request给PHP,然后获得json数据,结果发生异常。

异常信息:A JSONObject text must begin with '{' at character 1...

原因:生成json的php文件编码格式为带BOM的UTF-8,导致获得的字符串数据不是以'{'为第一个字符。

解决办法:用notepad++或其它编辑器把格式改成不带BOM的UTF-8。