我无法访问JSON
位于此网站上的我的 in android 文件。我收到一条错误消息java.net.UnknownHostException: umsjitm.cutm.org
。这是我的代码:
HttpClient client = new DefaultHttpClient();
URI website = new URI("http://umsjitm.cutm.org/GreycellsRestAPI /1/loadStudCompList?callback=listStudCompList¤tWingOid=3");
HttpGet request = new HttpGet();
request.setURI(website);
HttpResponse response = client.execute(request);
我的代码有什么问题?
如果我使用http://117.240.237.10/GreycellsRestAPI/1/loadStudCompList?callback=listStudCompList¤tWingOid=1
链接,它工作得很好。请告诉我我错过了什么?