我的servlet中有以下代码:
{{1}}
我想将jsonstring1作为json对象或arraylist传递给UI,并在一个警告框中的UI中显示它?请告知如何做到这一点?感谢。
答案 0 :(得分:0)
你可以转换这个json对象并获取变量中的每个属性并使用lib来使用它,如simple-json
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
你可以使用这样的代码转换你的json对象
JSONObject jsonObject = new JSONObject(jsonString1);
String filteredSt= jsonObject.get("filtered");
你可以搜索你需要查看的link