在我的Android项目中,当用户登录时,它会访问我们的服务器并向客户端返回一个json数据,当用户输入错误的用户名或密码时,服务器将返回json数据,如下所示:
{"d":{"__type":"FMService.LoginUser:#StarHope.FMS.Web.Pages.Service","Error":"worng","Permissions":null,"UserInfo":null}}
但是当用户输入正确的用户名和密码时,返回数据“Error”为空。所以键“Error”的值为空。我尝试这个来处理它。
try
{
//when Error is not null
String error = (String) map.get("Error");
}
catch (Exception e)
{
//when Error is null
}
这个可以吗?这有什么问题吗?给你。