英文:
JsonObject gson not processing properly convert to string and int
问题
我目前正在编写一个REST
应用程序,它可以接收来自Postman的一些JSON
数据,然后解析该数据,调用我的数据库,然后将处理后的对象再次返回给Postman(我意识到目前基本上只是一个GET
操作)。我一直在这样做以找出问题的根本原因。
我已经进行了几次不同的测试。如果我将res += company;
或者res += dept_id
返回给Postman,它们都会返回预期的值。
然而,如果我执行getDepartment(company, dept_id)
函数,该函数会失败,并且oldDept
未初始化。如果我硬编码getDepartment("CoolCarsInc", 16)
,那么oldDept
会被初始化,并且在从Postman的输出中正常显示。
因此,似乎极有可能是我如何将processedJson.get("company")
和processedJson.get("dept_id")
转换为字符串和整数存在问题。这里到底发生了什么?
JSON:
{
"company":"CoolCarsInc",
"dept_id":16
}
代码:
// ITEM 7.2 - /department PUT
@Path("putdepartment")
@PUT
@Consumes("application/json")
@Produces("application/json")
public Response putDepartment(
String incomingJson
){
//body comes in as a String, Circle is parsing it
//or you would use String circleIn and parse it yourself
//do some validation and update in db in either case
DataLayer dl = null;
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String res = "";
JsonElement receivedJson = new JsonParser().parse(incomingJson);
JsonObject processedJson = receivedJson.getAsJsonObject();
String company = processedJson.get("company").toString();
String dept_name = processedJson.get("dept_name").toString();
String dept_no = processedJson.get("dept_no").toString();
String location = processedJson.get("location").toString();
int dept_id = processedJson.get("dept_id").getAsInt;
try {
dl = new DataLayer(processedJson.get("company"));
Department oldDept = dl.getDepartment(company, dept_id);
oldDept.setCompany(company);
oldDept.setDeptName(dept_name);
oldDept.setDeptNo(dept_no);
oldDept.setLocation(location);
oldDept.setId(dept_id);
dl.updateDepartment(oldDept);
Department updatedDep = dl.getDepartment(company, dept_id);
res += gson.toJson(updatedDep);
} catch (Exception e) {
return Response.status(Response.Status.NOT_FOUND).build();
} finally {
dl.close();
}
return Response.ok("updated department:\n" + res).build();
}
英文:
So I'm writing a REST
app right now that receives some JSON
from postman and parses it, calls my database, and then spits the object back up to postman (I'm aware this is basically just a GET
right now. I've been doing this to get to the bottom of the issue).
I've tested this a few different times. If I return res += company;
or res += dept_id
back to postman, they both come back with their expected values.
However, if I do my getDepartment(company, dept_id)
, the func fails and oldDept
is not initialized. If I hardcode getDepartment("CoolCarsInc",16)
then oldDept
is initialized and shows up as expected in the output from postman.
So it seems extremely likely that there's something wrong with how I am converting processedJson.get("company")
and processedJson.get("dept_id")
to a string and int. What is going on here???
JSON:
{
"company":"CoolCarsInc",
"dept_id":16
}
Code:
// ITEM 7.2 - /department PUT
@Path("putdepartment")
@PUT
@Consumes("application/json")
@Produces("application/json")
public Response putDepartment(
String incomingJson
){
//body comes in as a String, Circle is parsing it
//or you would use String circleIn and parse it yourself
//do some validation and update in db in either case
DataLayer dl = null;
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String res = "";
JsonElement receivedJson = new JsonParser().parse(incomingJson);
JsonObject processedJson = receivedJson.getAsJsonObject();
String company = processedJson.get("company").toString();
String dept_name = processedJson.get("dept_name").toString();
String dept_no = processedJson.get("dept_no").toString();
String location = processedJson.("location").toString();
int dept_id = processedJson.get("dept_id").getAsInt;
try {
dl = new DataLayer(processedJson.get("company"));
Department oldDept = dl.getDepartment(company, dept_id);
oldDept.setCompany(company);
oldDept.setDeptName(dept_name);
oldDept.setDeptNo(dept_no);
oldDept.setLocation(location);
oldDept.setId(dept_id);
dl.updateDepartment(oldDept);
Department updatedDep = dl.getDepartment(company, dept_id);
res += gson.toJson(updatedDep);
} catch (Exception e) {
return Response.status(Response.Status.NOT_FOUND).build();
} finally {
dl.close();
}
return Response.ok("updated department:\n" + res).build();
}
答案1
得分: 0
我对于 gson 不太确定。但是你也可以使用 Java 的 org.json 库。
import org.json.JSONArray;
import org.json.JSONObject;
然后将字符串包装成 JSONObject。
JSONObject json = new JSONObject(incomingJson);
然后你可以通过以下方式访问键:
json.getString("company");
json.getInt("dept_id");
要使用这个库,请在 pom.xml 中添加依赖:
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20190722</version>
</dependency>
英文:
I am not sure about gson. But you can also use org.json library of java.
import org.json.JSONArray;
import org.json.JSONObject;
Then wrap string into JSONObject.
JSONObject json = new JSONObject(incomingJson);
Then you can access the keys as :
json.getString("company");
json.getInt("dept_id");
For using this library include dependency in pom.xml as:
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20190722</version>
</dependency>
专注分享java语言的经验与见解,让所有开发者获益!
评论