1:不带转化字符
格式{"type":"ONLINE_SHIPS","message":{"currentTime":1400077615368,"direction":0,"id":1,"latitude":29.5506,"longitude":106.6466}}
JSONObject jsonObject = new JSONObject(jsonstr).getJSONObject("message")
System.out.println("currentTime:"+jsonObject.get("currentTime"))
System.out.println("direction:"+jsonObject.get("direction"))
System.out.println("latitude:"+jsonObject.get("latitude"))
System.out.println("longitude:"+jsonObject.get("longitude"))
jsonarray
JSONObject jo = ja.getJSONArray("cargoList").getJSONObject(0)
2:带转义字符的json格式
{"type":"ONLINE_SHIPS","message":"{\"currentTime\":1400077615368,\"direction\":0,\"id\":1,\"latitude\":29.5506,\"longitude\":106.6466}"}
其实也很简单,先把它转化成字符串就可以了
JSONObject jsonObject = new JSONObject(jsonstr)
//先通过字符串的方式得到,转义字符自然会被转化掉
String jsonstrtemp = jsonObject.getString("message")
System.out.println("message:"+jsonstrtemp)
jsonObject = new JSONObject(jsonstrtemp)
System.out.println("currentTime:"+jsonObject.get("currentTime"))
System.out.println("direction:"+jsonObject.get("direction"))
System.out.println("latitude:"+jsonObject.get("latitude"))
System.out.println("longitude:"+jsonObject.get("longitude"))
二:遍历Json对象
JSONObject ports = ja.getJSONObject("ports")
Iterator<String>keys = ports.keys()
while(keys.hasNext()){
String key=keys.next()
String value = ports.getString(key)
}
三:使用Gjson,json与对象相互转化
使用Gson轻松将java对象转化为json格式
String json = gson.toJson(Object)//得到json形式的字符串
User user = gson.fromJson(json,User.class)//得到对象
转化成list
import java.util.List
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
import com.lc.function.Action
import com.lc.models.Groups
public class MapSearch {
private void ParseData(String _data)
{
Gson gson = new Gson()
List<Groups>ps = gson.fromJson(_data, new TypeToken<List<Groups>>(){}.getType())
System.out.println(ps.get(0).getGroup_name())
}
}
通过AJAX传到PHP的json字符串有时候加上反斜杠”\”来转义,PHP处理时需要先去掉反斜杠,然后再json_decode.$str = stripslashes($_POST['json'])
$arr = json_decode($str,true)
PS:php get抓取json怎样去除双引号前面的反斜杠
你这个不算标准的JSON格式数据,可以先将\"替换成"即可。
再用json_decode()系统函数将其转为json对象,如需转为数组加上第二个参数为true即可。
若仍输出为NULL,是由于存在BOM头信息,
复制代码 代码如下:
$arr = json_decode(trim($json,chr(239).chr(187).chr(191)),true)
转换即可。
本文全部内容介绍完了,希望对大家在使用PHP去掉json字符串中的反斜杠\及去掉双引号前的反斜杠中有所帮助。
java 中有转义字符的概念:
八进制转义序列:\ + 1到3位5数字;范围'\000'~'\377'
\0:空字符
2.Unicode转义字符:\u + 四个十六进制数字;0~65535
\u0000:空字符
3.特殊字符:就3个
\":双引号
\':单引号
\\:反斜线
4.控制字符:5个
\' 单引号字符
\\ 反斜杠字符
\r 回车
\n 换行
\f 走纸换页
\t 横向跳格
\b 退格
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)