我一直在关注关于将对象数组转换为 JSON 的教程,但我遇到了一些我找不到解决方案的错误。
代码
60 - 64 号线
Gson gson = new Gson().toJson(data);
response.setContentType("application/json");
response.setCharacterEncoding("utf-8");
response.getWriter().write(gson);
错误
60 号线
incompatible types
found : java.lang.String
required: com.google.gson.Gson
Gson gson = new Gson().toJson(data);
第 64 行
cannot find symbol
symbol : method write(com.google.gson.Gson)
location: class java.io.PrintWriter
response.getWriter().write(gson);
有谁知道如何正确地做我正在尝试的事情?