麻烦"没有发现身份验证挑战"当试图从服务器获取数据时

时间:2016-07-15 11:51:28

标签: java android httpconnection openweathermap

我想从服务器获取数据,但是当我运行应用程序时,它显示"错误java.io.IOException:未发现身份验证问题",我不知道如何修复此

这是我的logcat

ObjectName wildcard = new ObjectName("*:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=mytopic");
double totalRate = 0d;
int respondingBrokers = 0;
for(ObjectName on : mbsc.queryNames(wildcard, null)) {
   totalRate += (Double)mbsc.getAttribute(messageCountObj,"MeanRate");
   respondingBrokers++;
}
// Average rate of mean rates: totalRate/respondingBrokers

这是我的方法http://pastebin.com/ndZZFh7L

0 个答案:

没有答案