繁体   English   中英

为什么会收到未选中的作业警告?

[英]Why am I getting an Unchecked Assignment Warning?

使用Gson将JSON字符串转换为Java对象时,出现此警告。 为什么得到它,如何解决?

这是我在代码中得到的警告:

Unchecked assignment: 
    'net.brawtasports.brawtasportsgps.model.JSONKeys' to 
    'net.brawtasports.brawtasportsgps.model.JSONKeys<net.brawtasports.brawtasportsgps.model.team.Object>'

这是我在运行时遇到的错误:

java.lang.ClassCastException:
    com.google.gson.internal.LinkedTreeMap cannot be cast to
    net.brawtasports.brawtasportsgps.model.team.Object

这是我的代码:

  String jsonString = Preferences.readFromPreferences(ApplicationConstants.team_data,"");
    Gson gson = new Gson();
    JSONKeys<Object> teamMembers = gson.fromJson(jsonString, JSONKeys.class); //converts json string to java object
    Object players = teamMembers.getObject();//object is my custom class
    //ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(getActivity(),android.R.layout.simple_spinner_dropdown_item,players);
    ArrayAdapter arrayAdapter = new ArrayAdapter(getActivity(),android.R.layout.simple_spinner_dropdown_item,players.getPlayersSummary());
    player1.setAdapter(arrayAdapter);

这是我的JSONKeys POJO的代码:

   public class JSONKeys<T> {

private boolean Success;
private String Message;
private int ObjectIdentifier;
private T Object;
private java.util.List<List> List = new ArrayList<List>();
private int TotalRecords;
private String ErrorMessage;
private int Code;


private net.brawtasports.brawtasportsgps.model.match.Criteria Criteria;

private net.brawtasports.brawtasportsgps.model.match.SearchInfo SearchInfo;
//Add Object from match class


/**
 * @return The Criteria
 */
public net.brawtasports.brawtasportsgps.model.match.Criteria getCriteria() {
    return Criteria;
}

/**
 * @param Criteria The Criteria
 */
public void setCriteria(net.brawtasports.brawtasportsgps.model.match.Criteria Criteria) {
    this.Criteria = Criteria;
}

/**
 * @return The SearchInfo
 */
public net.brawtasports.brawtasportsgps.model.match.SearchInfo getSearchInfo() {
    return SearchInfo;
}

/**
 * @param SearchInfo The SearchInfo
 */
public void setSearchInfo(net.brawtasports.brawtasportsgps.model.match.SearchInfo SearchInfo) {
    this.SearchInfo = SearchInfo;
}

/**
 * @return The List
 */
public java.util.List<List> getList() {
    return List;
}

/**
 * @param List The List
 */
public void setLArrayListList(java.util.List<List> List) {
    this.List = List;
}


/**
 * @return The Code
 */
public int getCode() {
    return Code;
}

/**
 * @param Code The Code
 */
public void setCode(int Code) {
    this.Code = Code;
}

/**
 * @return The TotalRecords
 */
public int getTotalRecords() {
    return TotalRecords;
}

/**
 * @param TotalRecords The TotalRecords
 */
public void setTotalRecords(int TotalRecords) {
    this.TotalRecords = TotalRecords;
}

/**
 * @return The ErrorMessage
 */
public String getErrorMessage() {
    return ErrorMessage;
}

/**
 * @param ErrorMessage The ErrorMessage
 */
public void setErrorMessage(String ErrorMessage) {
    this.ErrorMessage = ErrorMessage;
}

/**
 *
 * @return
 * The message
 */
public String getMessage() {
    return Message;
}

/**
 *
 * @param message
 * The message
 */
public void setMessage(String message) {
    this.Message = message;
}


/**
 *
 * @return
 * The Success
 */
public boolean isSuccess() {
    return Success;
}

/**
 *
 * @param Success
 * The Success
 */
public void setSuccess(boolean Success) {
    this.Success = Success;


}


/**
 *
 * @return
 * The ObjectIdentifier
 */
public int getObjectIdentifier() {
    return ObjectIdentifier;
}

/**
 *
 * @param ObjectIdentifier
 * The ObjectIdentifier
 */
public void setObjectIdentifier(int ObjectIdentifier) {
    this.ObjectIdentifier = ObjectIdentifier;
}

/**
 *
 * @return
 * The Object
 */
public T getObject() {
    return Object;
}

/**
 *
 * @param Object
 * The Object
 */
public void setObject(T Object) {
    this.Object = Object;
}

}

对于我的对象POJO,它是:

   public class Object {

private HomeTeamGoals HomeTeamGoals;
private AwayTeamGoals AwayTeamGoals;
private List<PlayersSummary> PlayersSummary = new ArrayList<PlayersSummary>();
private TeamSummary TeamSummary;

/**
 *
 * @return
 * The HomeTeamGoals
 */
public HomeTeamGoals getHomeTeamGoals() {
    return HomeTeamGoals;
}

/**
 *
 * @param HomeTeamGoals
 * The HomeTeamGoals
 */
public void setHomeTeamGoals(HomeTeamGoals HomeTeamGoals) {
    this.HomeTeamGoals = HomeTeamGoals;
}

/**
 *
 * @return
 * The AwayTeamGoals
 */
public AwayTeamGoals getAwayTeamGoals() {
    return AwayTeamGoals;
}

/**
 *
 * @param AwayTeamGoals
 * The AwayTeamGoals
 */
public void setAwayTeamGoals(AwayTeamGoals AwayTeamGoals) {
    this.AwayTeamGoals = AwayTeamGoals;
}

/**
 *
 * @return
 * The PlayersSummary
 */
public List<PlayersSummary> getPlayersSummary() {
    return PlayersSummary;
}

/**
 *
 * @param PlayersSummary
 * The PlayersSummary
 */
public void setPlayersSummary(List<PlayersSummary> PlayersSummary) {
    this.PlayersSummary = PlayersSummary;
}

/**
 *
 * @return
 * The TeamSummary
 */
public TeamSummary getTeamSummary() {
    return TeamSummary;
}

/**
 *
 * @param TeamSummary
 * The TeamSummary
 */
public void setTeamSummary(TeamSummary TeamSummary) {
    this.TeamSummary = TeamSummary;
}
 }

反序列化泛型时,需要使用完全指定的类型。 他们需要更改的关键线在这里:

JSONKeys<Object> teamMembers = gson.fromJson(jsonString, JSONKeys.class);

因为您使用的是JSONKeys.class ,所以Gson不知道JSONKeys的通用类型是JSONKeys 而是使用以下命令:

JSONKeys<Object> teamMembers = gson.fromJson(jsonString, 
        new TypeToken<JSONKeys<net.brawtasports.brawtasportsgps.model.team.Object>>(){}.getType());

这将告诉Gson您需要使用哪种泛型类型。 请参阅我的解释以了解其工作原理: Gson TypeToken如何工作?

顺便说一句,不要将您的类命名为与java.lang包中的任何东西相同的名称。 它会使您的代码真正引起人们的阅读混乱,并且当您由于忘记了import语句而无意中引用了错误的代码时,可能会导致无法预料的错误。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM