⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resourcestreamrequesttarget.java

📁 Wicket一个开发Java Web应用程序框架。它使得开发web应用程序变得容易而轻松。 Wicket利用一个POJO data beans组件使得它可以与任何持久层技术相结合。
💻 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.request.target.resource;import javax.servlet.http.HttpServletResponse;import org.apache.wicket.IRequestTarget;import org.apache.wicket.RequestCycle;import org.apache.wicket.Response;import org.apache.wicket.protocol.http.WebResponse;import org.apache.wicket.protocol.http.request.WebErrorCodeResponseTarget;import org.apache.wicket.util.resource.IResourceStream;import org.apache.wicket.util.resource.IResourceStreamWriter;import org.apache.wicket.util.resource.ResourceStreamNotFoundException;import org.slf4j.Logger;import org.slf4j.LoggerFactory;/** * Request target that responds by sending its resource stream. *  * @author Eelco Hillenius */public class ResourceStreamRequestTarget implements IRequestTarget{	/** Logger */	private static final Logger log = LoggerFactory.getLogger(ResourceStreamRequestTarget.class);	/**	 * Optional filename, used to set the content disposition header. Only meaningful when using	 * with web requests.	 */	private String fileName;	/** the resource stream for the response. */	private final IResourceStream resourceStream;	/**	 * Construct.	 * 	 * @param resourceStream	 *            the resource stream for the response	 */	public ResourceStreamRequestTarget(IResourceStream resourceStream)	{		this.resourceStream = resourceStream;	}	/**	 * Construct.	 * 	 * @param resourceStream	 *            the resource stream for the response	 * @param fileName	 */	public ResourceStreamRequestTarget(IResourceStream resourceStream, String fileName)	{		this.resourceStream = resourceStream;		this.fileName = fileName;	}	/**	 * @see org.apache.wicket.IRequestTarget#detach(org.apache.wicket.RequestCycle)	 */	public void detach(RequestCycle requestCycle)	{	}	/**	 * @see java.lang.Object#equals(java.lang.Object)	 */	public boolean equals(Object obj)	{		if (obj instanceof ResourceStreamRequestTarget)		{			ResourceStreamRequestTarget that = (ResourceStreamRequestTarget)obj;			return resourceStream.equals(that.resourceStream) &&				((fileName != null) ? fileName.equals(that.fileName) : true);		}		return false;	}	/**	 * @return Optional filename, used to set the content disposition header. Only meaningful when	 *         using with web requests.	 */	public String getFileName()	{		return fileName;	}	/**	 * Gets the resource stream for the response.	 * 	 * @return the resource stream for the response	 */	public final IResourceStream getResourceStream()	{		return resourceStream;	}	/**	 * @see java.lang.Object#hashCode()	 */	public int hashCode()	{		int result = "ResourceStreamRequestTarget".hashCode();		result += resourceStream.hashCode();		result += (fileName != null) ? fileName.hashCode() : 0;		return 17 * result;	}	/**	 * Responds by sending the contents of the resource stream.	 * 	 * @see org.apache.wicket.IRequestTarget#respond(org.apache.wicket.RequestCycle)	 */	public void respond(RequestCycle requestCycle)	{		// Get servlet response to use when responding with resource		final Response response = requestCycle.getResponse();		configure(requestCycle, response, resourceStream);		try		{			if (resourceStream instanceof IResourceStreamWriter)				((IResourceStreamWriter)resourceStream).write(response.getOutputStream());			else				response.write(resourceStream.getInputStream());		}		catch (ResourceStreamNotFoundException e)		{			requestCycle.setRequestTarget(new WebErrorCodeResponseTarget(				HttpServletResponse.SC_NOT_FOUND));		}	}	/**	 * @param fileName	 *            Optional filename, used to set the content disposition header. Only meaningful	 *            when using with web requests.	 * 	 * @return The this.	 */	public ResourceStreamRequestTarget setFileName(String fileName)	{		this.fileName = fileName;		return this;	}	/**	 * @see java.lang.Object#toString()	 */	public String toString()	{		return "[ResourceStreamRequestTarget[resourceStream=" + resourceStream + ",fileName=" +			fileName + "]";	}	/**	 * Configures the response, default by setting the content type and length and content	 * disposition (in case the fileName property was set).	 * 	 * @param requestCycle	 * @param response	 *            the response	 * @param resourceStream	 *            the resource stream that will be rendered	 */	protected void configure(final RequestCycle requestCycle, final Response response,		final IResourceStream resourceStream)	{		// Configure response with content type of resource, if available		String responseType = resourceStream.getContentType();		if (responseType != null)		{			response.setContentType(responseType + "; charset=" + response.getCharacterEncoding());		}		else		{			// otherwise detect content-type automatically			if (getFileName() != null)			{				response.detectContentType(requestCycle, getFileName());			}			else			{				response.detectContentType(requestCycle, requestCycle.getRequest().getURL());			}		}		// WICKET-473 Allow IResourceStream.length() to return -1		long len = resourceStream.length();		if (len >= 0)		{			// and the content length			response.setContentLength(len);		}		// and content disposition if any		String file = getFileName();		if (file != null && (response instanceof WebResponse))		{			((WebResponse)response).setAttachmentHeader(file);		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -