我有以下代码:


    JsonElement deviceConfig = null;

    JsonObject status = getRestAPI().Connectivity().getDeviceStatus(device);

    deviceConfig = status.get("deviceConfig");

    if (deviceConfig == null || deviceConfig.isJsonNull()) {
        deviceConfig = status.get("mConfig");
    }

    if (deviceConfig != null && !deviceConfig.isJsonNull()) {
        if (!deviceConfig.getAsString().isEmpty()) {
            break;
        }
    }



由于某些原因,出现以下错误:


java.lang.UnsupportedOperationException:JsonObject
在com.google.gson.JsonElement.getAsString(JsonElement.java:191)


在这一行:

if (!deviceConfig.getAsString().isEmpty()) {


知道我检查JSON不为null的原因为何得到此异常的任何想法吗?

最佳答案

JsonElement源代码:https://github.com/google/gson/blob/master/gson/src/main/java/com/google/gson/JsonElement.java

JsonElement类是一个抽象类,它打算通过提供进一步实现的子类来使用,对于这些子类,抽象类还不够具体。

getAsString方法存在,可以,但是实现如下:

  /**
   * convenience method to get this element as a string value.
   *
   * @return get this element as a string value.
   * @throws ClassCastException if the element is of not a {@link JsonPrimitive} and is not a valid
   * string value.
   * @throws IllegalStateException if the element is of the type {@link JsonArray} but contains
   * more than a single element.
   */
  public String getAsString() {
    throw new UnsupportedOperationException(getClass().getSimpleName());
  }


这基本上意味着:您应该在子类中提供一个实现。

因此,为了获得所需的结果,需要在调用getAsString()之前将变量强制转换为子类。

10-08 13:22