资源简介
volley是一个优秀的安卓开源网络访问工具 这里包含一个volley代码jar和源码,版本是2015.03.03的1.0.11版本 更多资料可以参见volley的github地址: https://github.com/mcxiaoke/android-volley
代码片段和文件信息
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License Version 2.0 (the “License“);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing software
* distributed under the License is distributed on an “AS IS“ BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.volley;
import android.content.Intent;
import com.android.volley.NetworkResponse;
import com.android.volley.VolleyError;
/**
* Error indicating that there was an authentication failure when performing a Request.
*/
@SuppressWarnings(“serial“)
public class AuthFailureError extends VolleyError {
/** An intent that can be used to resolve this exception. (Brings up the password dialog.) */
private Intent mResolutionIntent;
public AuthFailureError() { }
public AuthFailureError(Intent intent) {
mResolutionIntent = intent;
}
public AuthFailureError(NetworkResponse response) {
super(response);
}
public AuthFailureError(String message) {
super(message);
}
public AuthFailureError(String message Exception reason) {
super(message reason);
}
public Intent getResolutionIntent() {
return mResolutionIntent;
}
@Override
public String getMessage() {
if (mResolutionIntent != null) {
return “User needs to (re)enter credentials.“;
}
return super.getMessage();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1752 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\AuthFailureError.java
文件 2897 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\Cache.java
文件 6004 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\CacheDispatcher.java
文件 3128 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\DefaultRetryPolicy.java
文件 3881 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\ExecutorDelivery.java
文件 1035 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\Network.java
文件 5930 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\NetworkDispatcher.java
文件 1118 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\NetworkError.java
文件 2425 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\NetworkResponse.java
文件 971 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\NoConnection
文件 1072 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\ParseError.java
文件 20244 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\Request.java
文件 11559 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\RequestQueue.java
文件 2649 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\Response.java
文件 1210 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\ResponseDelivery.java
文件 1309 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\RetryPolicy.java
文件 1029 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\ServerError.java
文件 794 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\TimeoutError.java
文件 3922 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\AndroidAuthenticator.java
文件 1105 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\Authenticator.java
文件 11851 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\BasicNetwork.java
文件 5400 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\ByteArrayPool.java
文件 2041 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\ClearCacheRequest.java
文件 18540 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\Diskba
文件 7484 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\HttpClientStack.java
文件 5771 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\HttpHeaderParser.java
文件 1511 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\HttpStack.java
文件 9636 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\HurlStack.java
文件 19887 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\ImageLoader.java
文件 9918 2015-03-02 21:29 volley-1.0.11-2015.03.03\com\android\volley\toolbox\ImageRequest.java
............此处省略20个文件信息
- 上一篇:JAVA简易画图工具
- 下一篇:微信公众号支付改良版
相关资源
- kabeja0.4所需jar包、素材及教程
- jboss-logging-3.1.0.GA的jar包
- Qrcode_swetake
-
gba
se驱动jar包 - java-多线程器支持断点续传、线程加减
- OKHttp网络请求jar包
- eclipse导入jar包的方法
- junit4.12.zip和依赖的jar包
- standard1.1.2jar包
- MQTT jar包 wmqtt.jar
-
序列化成xm
l文件所必须的jar包 - java实现数据的备份与恢复jar包
- ormLite数据库框架jar包
- genymotion_eclipse插件(插件1.0.6版,2个
- jna-example Jar包
- mail jar包
- xssProject所需jar包
- junit-4.12.jar包完整版
- DiskFileItemFactory需要的jar包commons-file
- javax.mail-api.jar,activation.jar包
- modbus采集jar包
- commons-fileupload和commons-io的jar包
- log4j的jar包
- weblogic反序列化漏洞测试jar包
- junit4 jar包以及源码
-
ba
se64所需jar包 - Android_HttpClient_jar包
- Qt on Android调用Jar包
- volley jar包
- DBCP jar包
评论
共有 条评论