📄 fileresourcestream.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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.apache.wicket.util.resource;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import org.apache.wicket.util.file.File;import org.apache.wicket.util.time.Time;/** * A FileResourceStream is an IResource implementation for files. * * @see org.apache.wicket.util.resource.IResourceStream * @see org.apache.wicket.util.watch.IModifiable * @author Jonathan Locke */public class FileResourceStream extends AbstractResourceStream implements IFixedLocationResourceStream{ private static final long serialVersionUID = 1L; /** Any associated file */ private final File file; /** Resource stream */ private transient InputStream inputStream; /** * Constructor. * * @param file * {@link File} containing resource */ public FileResourceStream(final File file) { this.file = file; } /** * Constructor. * * @param file * {@link java.io.File} containing resource */ public FileResourceStream(final java.io.File file) { this.file = new File(file); } /** * Closes this resource. * * @throws IOException */ public void close() throws IOException { if (inputStream != null) { inputStream.close(); inputStream = null; } } /** * @see IResourceStream#getContentType() */ public String getContentType() { // Let ResourceStreamRequestTarget handle content-type automatically return null; } /** * @return The file this resource resides in, if any. */ public File getFile() { return file; } /** * @return A readable input stream for this resource. The same input stream is returned until * <tt>FileResourceStream.close()</tt> is invoked. * * @throws ResourceStreamNotFoundException */ public InputStream getInputStream() throws ResourceStreamNotFoundException { if (inputStream == null) { try { inputStream = new FileInputStream(file); } catch (FileNotFoundException e) { throw new ResourceStreamNotFoundException("Resource " + file + " could not be found", e); } } return inputStream; } /** * @see org.apache.wicket.util.watch.IModifiable#lastModifiedTime() * @return The last time this resource was modified */ public Time lastModifiedTime() { if (file != null) { return file.lastModifiedTime(); } return null; } /** * @see java.lang.Object#toString() */ public String toString() { if (file != null) { return file.toString(); } return ""; } /** * @see org.apache.wicket.util.resource.IResourceStream#length() */ public long length() { if (file != null) { return file.length(); } return 0; } /** * @see org.apache.wicket.util.resource.IFixedLocationResourceStream#locationAsString() */ public String locationAsString() { if (file != null) { return file.getAbsolutePath(); } return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -