JsonObject gson处理不当,无法正确转换为字符串和整数。

huangapple 未分类评论48阅读模式
英文:

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(&quot;company&quot;);
json.getInt(&quot;dept_id&quot;);

For using this library include dependency in pom.xml as:

        &lt;dependency&gt;
			&lt;groupId&gt;org.json&lt;/groupId&gt;
			&lt;artifactId&gt;json&lt;/artifactId&gt;
			&lt;version&gt;20190722&lt;/version&gt;
		&lt;/dependency&gt;

huangapple
  • 本文由 发表于 2020年7月23日 17:29:41
  • 转载请务必保留本文链接:https://java.coder-hub.com/63051086.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定