Android:java.lang.VerifyError因为Generic Class

时间:2012-06-15 09:01:26

标签: android gson generics

所以我正在开发Android应用程序,过去几天我已经java.lang.VerifyError了。我在stackoverflow帖子中读到这个错误是由于返回中的问题(预期的返回不是它得到的)。

所以我相信这是由于一个Generic Class被转换成一个String而我希望有人有解决方案!

这是通用类:

public class ProcessJson {
public enum MessageType{
    GetAppName,
    GetItemsList
}
public static Object ProcessResult(MessageType messageType, String result) throws MalformedJsonException{
    Gson gson = new Gson();
    Object returnValue = null;

    switch(messageType){
    case GetAppName :
        returnValue = gson.fromJson(result, String.class);
        return returnValue;
    case GetItemsList :
        returnValue = gson.fromJson(result, Item[].class);
        return returnValue;
    }

    return null;
}
}

以下是我投放课程的地方:

public void LoginBtn_OnClick(View v){
    ItemAdapter adapter = (ItemAdapter)this.itemListView.getAdapter();
    //Clearing the ListView
    if(adapter != null) {
        this.itemListView.setAdapter(null);
    }
    //Fetch the AplicationName
    String username = this.editTextUsername.getText().toString();
    String appName = RESTClient.connect("ip/DevTest/WcfApi/Api1.svc/api1/appName", username);

    try {
        appName = (String)ProcessJson.ProcessResult(MessageType.GetAppName, appName);
        appNameTextView.setText("Logged in as: " + appName);
    } catch (MalformedJsonException e) {
        e.printStackTrace();
        appNameTextView.setText("Cannot Login");
    }
    catch (JsonSyntaxException e){
        e.printStackTrace();
        appNameTextView.setText("Cannot Login");
    }

    //Fetch the itemList
    String itemList = RESTClient.connect("ip/DevTest/WcfApi/Api1.svc/api1/items", username);
    try{
        Item[] items = (Item[])ProcessJson.ProcessResult(MessageType.GetItemsList, itemList);
        //Binding itemList to UI
        //ItemAdapter itemAdapter = new ItemAdapter(this, R.layout.item_row, items);
        //this.itemListView.setAdapter(itemAdapter);

    } catch (MalformedJsonException e) {
        e.printStackTrace();
        appNameTextView.setText("Cannot Login");
    }
    catch (JsonSyntaxException e){
        e.printStackTrace();
        appNameTextView.setText("Cannot Login");
    }
}

当我将两个try / catch块作为注释时,我设法避免崩溃。这就是让我相信问题是由ProcessJson类引起的原因。

提前致谢。

1 个答案:

答案 0 :(得分:0)

尝试this解决方法,它可能会解决您的问题。