HTTP Response Cache

An HTTP Response Cache for java.net.URL

Лицензия

Лицензия

Группа

Группа

com.integralblue
Идентификатор

Идентификатор

httpresponsecache
Последняя версия

Последняя версия

1.3
Дата

Дата

Тип

Тип

jar
Описание

Описание

HTTP Response Cache
An HTTP Response Cache for java.net.URL
Ссылка на сайт

Ссылка на сайт

https://github.com/candrews/HttpResponseCache
Организация-разработчик

Организация-разработчик

Craig Andrews
Система контроля версий

Система контроля версий

https://github.com/candrews/HttpResponseCache

Скачать httpresponsecache

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.integralblue/httpresponsecache/ -->
<dependency>
    <groupId>com.integralblue</groupId>
    <artifactId>httpresponsecache</artifactId>
    <version>1.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.integralblue/httpresponsecache/
implementation 'com.integralblue:httpresponsecache:1.3'
// https://jarcasting.com/artifacts/com.integralblue/httpresponsecache/
implementation ("com.integralblue:httpresponsecache:1.3")
'com.integralblue:httpresponsecache:jar:1.3'
<dependency org="com.integralblue" name="httpresponsecache" rev="1.3">
  <artifact name="httpresponsecache" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.integralblue', module='httpresponsecache', version='1.3')
)
libraryDependencies += "com.integralblue" % "httpresponsecache" % "1.3"
[com.integralblue/httpresponsecache "1.3"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.jakewharton : disklrucache jar 1.2.1

test (3)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.8.2
org.bouncycastle : bcprov-jdk15 jar 1.46
com.google.mockwebserver : mockwebserver jar 20121111

Модули Проекта

Данный проект не имеет модулей.

HttpResponseCache

The HttpResponseCache library provides transparent and automatic caching of HTTP and HTTPS requests that use the java.net.HttpUrlConnection classes.

For information on how to use HttpUrlConnection, refer to the (Android documentation)[https://developer.android.com/reference/java/net/HttpURLConnection.html] - don't worry, the information also applies to non-Android Java.

Requirements

This library will work on Java 5 and later, and (theoretically) any version of Android (it has only been tested back to 1.5).

Usage

When using Maven (or any of the dependency management systems that use Maven's library, such as Ivy), simply add the dependency reference. The library, and its dependencies, are in Maven Central: http://mvnrepository.com/artifact/com.integralblue/httpresponsecache For example, for a Maven pom.xml:

<dependency>
  <groupId>com.integralblue</groupId>
  <artifactId>httpresponsecache</artifactId>
  <version>1.3</version>
</dependency>

If Maven is not in use, such as when using a non-Maven Android project, include the httpresponsecache jar and its dependency, DiskLruCache.

In the application, before making any HTTP(s) requests, simply call:

com.integralblue.httpresponsecache.HttpResponseCache.install(File directory, long maxSize);

Where directory is the directory to hold cache data, and maxSize is the maximum size of the cache in bytes.

On Android, it may be desirable to use Android 4.0 and higher's built in HttpResponseCache and fall back to this library on older versions of Android. This code would do that:

final long httpCacheSize = 10 * 1024 * 1024; // 10 MiB
final File httpCacheDir = new File(getCacheDir(), "http");
try {
    Class.forName("android.net.http.HttpResponseCache")
        .getMethod("install", File.class, long.class)
        .invoke(null, httpCacheDir, httpCacheSize);
} catch (Exception httpResponseCacheNotAvailable) {
    Ln.d(httpResponseCacheNotAvailable, "android.net.http.HttpResponseCache not available, probably because we're running on a pre-ICS version of Android. Using com.integralblue.httpresponsecache.HttpHttpResponseCache.");
    try{
        com.integralblue.httpresponsecache.HttpResponseCache.install(httpCacheDir, httpCacheSize);
    }catch(Exception e){
        Ln.e(e, "Failed to set up com.integralblue.httpresponsecache.HttpResponseCache");
    }
}

Note that this library may be more up to date and have more bug fixes / features / performance improvements than the version included with the Android platform being targeted. For example, this library includes some performance improvements that are in Jelly Bean (4.1) but not in ICS (4.0). So if you want users on ICS to get these performance improvements, always use this library, and do not conditionally use the one from Android. In other words, you may want to always simply use:

com.integralblue.httpresponsecache.HttpResponseCache.install(httpCacheDir, httpCacheSize);

and not use the conditional code above.

License

This library is licensed under the terms of the Apache License, Version 2.0. You may obtain a copy of the license at http://www.apache.org/licenses/LICENSE-2.0

Origin/Contributors

This library consists of code copied from the Android Open Source Project (AOSP). android.net.http.HttpResponseCache was copied, along with all of its non-standard-Java dependencies, to a new namespace and then modified to work under standard Java. Special thanks for Jesse Wilson for writing android.net.http.HttpResponseCache and assisting in the creation of this library. Also special thanks to Jake Wharton for porting DiskLruCache from AOSP, greatly reducing the amount of work necessary to create this library.

Версии библиотеки

Версия
1.3
1.2
1.0.0