com.android.volley.NoConnectionError:java.net.ProtocolException:意外的状态行:HTTP / 1.1 401.3未经授权

时间:2015-09-09 11:22:41

标签: android-volley protocolexception

以下是我的代码。我收到了com.android.volley.NoConnectionError:java.net.ProtocolException:意外的状态行:HTTP / 1.1 401.3未经授权。

ClassLoader sysClassLoader = ClassLoader.getSystemClassLoader();
URL directory = new URL("file:/Users/Abel/Desktop/Output/strategies/Classes/myJar.jar");
ClassLoader custom = new URLClassLoader(new URL[] {directory}, sysClassLoader);

Class strategyClass = custom.loadClass(className);
Object strategyObject = (Object) strategyClass.newInstance();
Strategy strategyInstance= (Strategy) strategyObject;

当我使用loopj库时,我遇到了一个类似的错误。 这是我第一次使用volley库和http connect。 我感谢您的帮助。谢谢。

0 个答案:

没有答案