安卓进展ntlm验证返回401

安卓进行ntlm验证返回401
代码:

                HttpClient httpclient = new DefaultHttpClient(); 
NTCredentials creds = new NTCredentials("1525201", "chengdazhi1997", "myworkstation", "pkuschool");   
((AbstractHttpClient) httpclient).getCredentialsProvider().setCredentials(AuthScope.ANY, creds);   
HttpHost target = new HttpHost("portal.pkuschool.edu.cn", 80, "http");
HttpContext localContext = new BasicHttpContext();   
HttpGet httpget = new HttpGet("http://portal.pkuschool.edu.cn/Lists/List29/AllItems.aspx");
HttpResponse response1 = httpclient.execute(target, httpget, localContext);
System.out.println("response1 code : " + response1.getStatusLine().getStatusCode());

在java工程中返回200,但在安卓工程中返回401

求大神解答!!!急!!
------解决方案--------------------
不知道是哪里错了,应该是配置有问题吧,不然不会验证不通过的,,,
------解决方案--------------------
配置文件配置错了,或者返回数据,建议再检查下服务器
------解决方案--------------------
那就urlconnction呗,按理来说应该没问题
------解决方案--------------------
HttpURLConnection  或者其他jar  再测试看看呢