/*
 * Copyright 2002-2018 the original author or authors.
 *
 * 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 org.springframework.core.io;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URI;
import java.net.URL;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.WritableByteChannel;
import java.nio.file.Files;
import java.nio.file.NoSuchFileException;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;

import org.springframework.util.Assert;

Resource implementation for Path handles, performing all operations and transformations via the Path API. Supports resolution as a File and also as a URL. Implements the extended WritableResource interface.

Note: As of 5.1, Path support is also available in FileSystemResource, applying Spring's standard String-based path transformations but performing all operations via the Files API.

Author:Philippe Marschall, Juergen Hoeller
See Also:
Since:4.0
Deprecated:as of 5.1.1, in favor of FileSystemResource(Path)
/** * {@link Resource} implementation for {@link java.nio.file.Path} handles, * performing all operations and transformations via the {@code Path} API. * Supports resolution as a {@link File} and also as a {@link URL}. * Implements the extended {@link WritableResource} interface. * * <p>Note: As of 5.1, {@link java.nio.file.Path} support is also available * in {@link FileSystemResource#FileSystemResource(Path) FileSystemResource}, * applying Spring's standard String-based path transformations but * performing all operations via the {@link java.nio.file.Files} API. * * @author Philippe Marschall * @author Juergen Hoeller * @since 4.0 * @see java.nio.file.Path * @see java.nio.file.Files * @deprecated as of 5.1.1, in favor of {@link FileSystemResource#FileSystemResource(Path)} */
@Deprecated public class PathResource extends AbstractResource implements WritableResource { private final Path path;
Create a new PathResource from a Path handle.

Note: Unlike FileSystemResource, when building relative resources via createRelative, the relative path will be built underneath the given root: e.g. Paths.get("C:/dir1/"), relative path "dir2" -> "C:/dir1/dir2"!

Params:
  • path – a Path handle
/** * Create a new PathResource from a Path handle. * <p>Note: Unlike {@link FileSystemResource}, when building relative resources * via {@link #createRelative}, the relative path will be built <i>underneath</i> * the given root: e.g. Paths.get("C:/dir1/"), relative path "dir2" -> "C:/dir1/dir2"! * @param path a Path handle */
public PathResource(Path path) { Assert.notNull(path, "Path must not be null"); this.path = path.normalize(); }
Create a new PathResource from a Path handle.

Note: Unlike FileSystemResource, when building relative resources via createRelative, the relative path will be built underneath the given root: e.g. Paths.get("C:/dir1/"), relative path "dir2" -> "C:/dir1/dir2"!

Params:
  • path – a path
See Also:
/** * Create a new PathResource from a Path handle. * <p>Note: Unlike {@link FileSystemResource}, when building relative resources * via {@link #createRelative}, the relative path will be built <i>underneath</i> * the given root: e.g. Paths.get("C:/dir1/"), relative path "dir2" -> "C:/dir1/dir2"! * @param path a path * @see java.nio.file.Paths#get(String, String...) */
public PathResource(String path) { Assert.notNull(path, "Path must not be null"); this.path = Paths.get(path).normalize(); }
Create a new PathResource from a Path handle.

Note: Unlike FileSystemResource, when building relative resources via createRelative, the relative path will be built underneath the given root: e.g. Paths.get("C:/dir1/"), relative path "dir2" -> "C:/dir1/dir2"!

Params:
  • uri – a path URI
See Also:
/** * Create a new PathResource from a Path handle. * <p>Note: Unlike {@link FileSystemResource}, when building relative resources * via {@link #createRelative}, the relative path will be built <i>underneath</i> * the given root: e.g. Paths.get("C:/dir1/"), relative path "dir2" -> "C:/dir1/dir2"! * @param uri a path URI * @see java.nio.file.Paths#get(URI) */
public PathResource(URI uri) { Assert.notNull(uri, "URI must not be null"); this.path = Paths.get(uri).normalize(); }
Return the file path for this resource.
/** * Return the file path for this resource. */
public final String getPath() { return this.path.toString(); }
This implementation returns whether the underlying file exists.
See Also:
  • exists.exists(Path, LinkOption...)
/** * This implementation returns whether the underlying file exists. * @see java.nio.file.Files#exists(Path, java.nio.file.LinkOption...) */
@Override public boolean exists() { return Files.exists(this.path); }
This implementation checks whether the underlying file is marked as readable (and corresponds to an actual file with content, not to a directory).
See Also:
/** * This implementation checks whether the underlying file is marked as readable * (and corresponds to an actual file with content, not to a directory). * @see java.nio.file.Files#isReadable(Path) * @see java.nio.file.Files#isDirectory(Path, java.nio.file.LinkOption...) */
@Override public boolean isReadable() { return (Files.isReadable(this.path) && !Files.isDirectory(this.path)); }
This implementation opens a InputStream for the underlying file.
See Also:
  • newInputStream.newInputStream(Path, OpenOption...)
/** * This implementation opens a InputStream for the underlying file. * @see java.nio.file.spi.FileSystemProvider#newInputStream(Path, OpenOption...) */
@Override public InputStream getInputStream() throws IOException { if (!exists()) { throw new FileNotFoundException(getPath() + " (no such file or directory)"); } if (Files.isDirectory(this.path)) { throw new FileNotFoundException(getPath() + " (is a directory)"); } return Files.newInputStream(this.path); }
This implementation checks whether the underlying file is marked as writable (and corresponds to an actual file with content, not to a directory).
See Also:
/** * This implementation checks whether the underlying file is marked as writable * (and corresponds to an actual file with content, not to a directory). * @see java.nio.file.Files#isWritable(Path) * @see java.nio.file.Files#isDirectory(Path, java.nio.file.LinkOption...) */
@Override public boolean isWritable() { return (Files.isWritable(this.path) && !Files.isDirectory(this.path)); }
This implementation opens a OutputStream for the underlying file.
See Also:
  • newOutputStream.newOutputStream(Path, OpenOption...)
/** * This implementation opens a OutputStream for the underlying file. * @see java.nio.file.spi.FileSystemProvider#newOutputStream(Path, OpenOption...) */
@Override public OutputStream getOutputStream() throws IOException { if (Files.isDirectory(this.path)) { throw new FileNotFoundException(getPath() + " (is a directory)"); } return Files.newOutputStream(this.path); }
This implementation returns a URL for the underlying file.
See Also:
/** * This implementation returns a URL for the underlying file. * @see java.nio.file.Path#toUri() * @see java.net.URI#toURL() */
@Override public URL getURL() throws IOException { return this.path.toUri().toURL(); }
This implementation returns a URI for the underlying file.
See Also:
  • toUri.toUri()
/** * This implementation returns a URI for the underlying file. * @see java.nio.file.Path#toUri() */
@Override public URI getURI() throws IOException { return this.path.toUri(); }
This implementation always indicates a file.
/** * This implementation always indicates a file. */
@Override public boolean isFile() { return true; }
This implementation returns the underlying File reference.
/** * This implementation returns the underlying File reference. */
@Override public File getFile() throws IOException { try { return this.path.toFile(); } catch (UnsupportedOperationException ex) { // Only paths on the default file system can be converted to a File: // Do exception translation for cases where conversion is not possible. throw new FileNotFoundException(this.path + " cannot be resolved to absolute file path"); } }
This implementation opens a Channel for the underlying file.
See Also:
  • newByteChannel.newByteChannel(Path, OpenOption...)
/** * This implementation opens a Channel for the underlying file. * @see Files#newByteChannel(Path, OpenOption...) */
@Override public ReadableByteChannel readableChannel() throws IOException { try { return Files.newByteChannel(this.path, StandardOpenOption.READ); } catch (NoSuchFileException ex) { throw new FileNotFoundException(ex.getMessage()); } }
This implementation opens a Channel for the underlying file.
See Also:
  • newByteChannel.newByteChannel(Path, OpenOption...)
/** * This implementation opens a Channel for the underlying file. * @see Files#newByteChannel(Path, OpenOption...) */
@Override public WritableByteChannel writableChannel() throws IOException { return Files.newByteChannel(this.path, StandardOpenOption.WRITE); }
This implementation returns the underlying file's length.
/** * This implementation returns the underlying file's length. */
@Override public long contentLength() throws IOException { return Files.size(this.path); }
This implementation returns the underlying File's timestamp.
See Also:
  • getLastModifiedTime.getLastModifiedTime(Path, LinkOption...)
/** * This implementation returns the underlying File's timestamp. * @see java.nio.file.Files#getLastModifiedTime(Path, java.nio.file.LinkOption...) */
@Override public long lastModified() throws IOException { // We can not use the superclass method since it uses conversion to a File and // only a Path on the default file system can be converted to a File... return Files.getLastModifiedTime(this.path).toMillis(); }
This implementation creates a PathResource, applying the given path relative to the path of the underlying file of this resource descriptor.
See Also:
  • resolve.resolve(String)
/** * This implementation creates a PathResource, applying the given path * relative to the path of the underlying file of this resource descriptor. * @see java.nio.file.Path#resolve(String) */
@Override public Resource createRelative(String relativePath) throws IOException { return new PathResource(this.path.resolve(relativePath)); }
This implementation returns the name of the file.
See Also:
  • getFileName.getFileName()
/** * This implementation returns the name of the file. * @see java.nio.file.Path#getFileName() */
@Override public String getFilename() { return this.path.getFileName().toString(); } @Override public String getDescription() { return "path [" + this.path.toAbsolutePath() + "]"; }
This implementation compares the underlying Path references.
/** * This implementation compares the underlying Path references. */
@Override public boolean equals(Object other) { return (this == other || (other instanceof PathResource && this.path.equals(((PathResource) other).path))); }
This implementation returns the hash code of the underlying Path reference.
/** * This implementation returns the hash code of the underlying Path reference. */
@Override public int hashCode() { return this.path.hashCode(); } }