| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| jimfs-1.1-sources.jar | 2016-02-12 | 125.7 kB | |
| jimfs-1.1-javadoc.jar | 2016-02-12 | 115.9 kB | |
| jimfs-1.1.jar | 2016-02-12 | 206.7 kB | |
| 1.1 source code.tar.gz | 2016-02-12 | 150.5 kB | |
| 1.1 source code.zip | 2016-02-12 | 252.7 kB | |
| README.md | 2016-02-12 | 1.6 kB | |
| Totals: 6 Items | 853.0 kB | 0 | |
Jimfs 1.1 final release.
Maven dependency:
:::xml
<dependency>
<groupId>com.google.jimfs</groupId>
<artifactId>jimfs</artifactId>
<version>1.1</version>
</dependency>
Javadoc for the release can be viewed at: http://google.github.io/jimfs/releases/1.1/api/docs/ API diffs between Jimfs 1.0 and this release can be viewed at: http://google.github.io/jimfs/releases/1.1/api/diffs/
This release contains no changes from 1.1-rc1.
What's new in 1.1
- Now possible to configure the rate at which a
WatchServicepolls by callingsetWatchServiceConfiguration(WatchServiceConfiguration.polling(interval, timeUnit))when building aConfiguration. (#14) - Now possible to get the default
Configuration(based on the current operating system) that is used when calling theJimfsfactory methods that do not take aConfigurationparameter, viaConfiguration.forCurrentPlatform(). Mainly useful if you want to create a slightly modified (e.g. with a differentWatchServicepolling rate) version of thatConfiguration. URLobjects can now be created from JimfsPaths (usingpath.toUri().toURL()). SuchURLs support reading the contents of the file through anInputStream, with behavior similar to that of a normalfile:URLobject. (#13)- URIs for directories now end in a trailing
/. (#16) - Fixed an issue with environments where Java SDK code (such as the
FileSystemsclass and by extension theFileSystemProviderimplementations it loads as services) and user code (including theJimfsentry point class) are loaded by different classloaders. (#18)