android studio 中使用fastjson

1、build.gradle (moudle app)中加入依赖,很难下载,可以到maven的官网中去搜索 fastjson andrid 找到对应android版本

https://mvnrepository.com/artifact/com.alibaba/fastjson

dependencies {
    //fastjson
    compile group: 'org.ligboy.retrofit2', name: 'converter-fastjson-android', version: '2.1.0'
}

 

2、编写工具类:

{\"name\":\"test.txt\",\"filePath\":\"/sdcard/0/test.txt\"}

 

你可能感兴趣的:(android)