因此,我正在开发一个Android App,最近几天我一直使用java.lang.VerifyError。我在stackoverflow帖子中读到,此错误是由于退货中的问题(预期的退货不是它得到的)。

因此,我认为这是由于将通用类强制转换为字符串,我希望有人能解决该问题!

这是通用类:

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类上的原因。

提前致谢。

最佳答案

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

10-02 14:51