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

📄 include.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.markup.html.include;import java.net.MalformedURLException;import java.net.URL;import javax.servlet.http.HttpServletRequest;import org.apache.wicket.WicketRuntimeException;import org.apache.wicket.markup.ComponentTag;import org.apache.wicket.markup.MarkupStream;import org.apache.wicket.markup.html.WebComponent;import org.apache.wicket.model.IModel;import org.apache.wicket.model.Model;import org.apache.wicket.protocol.http.WebRequest;import org.apache.wicket.util.resource.UrlResourceStream;/** * <p> * Component that includes/ renders the import result of an URL, much like JSP include. * </p> * <p> * Use this to integrate non-Wicket locations in your page. <strong>This component is NOT meant for * integrating more Wicket sources as a means of quick and dirty page composition. Use Panels, * Borders and (Markup)inheritance for page composition instead.</strong> * </p> * <p> * You can feed this component the URL directly, or use a model that should deliver a valid URL. You * can both use absolute (e.g. http://www.theserverside.com/) and relative (e.g. mydir/mypage.html) * urls. This component will try to resolve relative urls to resources in the same webapplication. * </p> * <p> * The following example shows how to integrate a header and footer, coming from a plain HTML source * on the same server is integrated using this component. The files footer.html and header.html * would be located in the web application root directory * </p> * <p> * Java: *  * <pre> *   ... * 	add(new Include(&quot;header&quot;, &quot;header.html&quot;)); * 	add(new Include(&quot;footer&quot;, &quot;footer.html&quot;)); *   ... * </pre> *  * Html: *  * <pre> *   ... * 	&lt;div&gt; * 	 &lt;div wicket:id=&quot;header&quot;&gt;header comes here&lt;/div&gt; * 	 &lt;div&gt;I am the body!&lt;/div&gt; * 	 &lt;div wicket:id=&quot;footer&quot;&gt;footer comes here&lt;/div&gt; * 	&lt;/div&gt; *   ... * </pre> *  * </p> *  * @author Eelco Hillenius */public class Include extends WebComponent{	private static final long serialVersionUID = 1L;	/**	 * <p>	 * Valid characters in a scheme.	 * </p>	 * <p>	 * RFC 1738 says the following:	 * </p>	 * <blockquote>Scheme names consist of a sequence of characters. The lower case letters	 * "a"--"z", digits, and the characters plus ("+"), period ("."), and hyphen ("-") are allowed.	 * For resiliency, programs interpreting URLs should treat upper case letters as equivalent to	 * lower case in scheme names (e.g., allow "HTTP" as well as "http"). </blockquote>	 * <p>	 * We treat as absolute any URL that begins with such a scheme name, followed by a colon.	 * </p>	 */	private static final String VALID_SCHEME_CHARS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+.-";	/**	 * Construct.	 * 	 * @param id	 *            component id	 */	public Include(final String id)	{		super(id);	}	/**	 * Construct.	 * 	 * @param id	 *            component id	 * @param model	 *            the model	 */	public Include(String id, IModel model)	{		super(id, model);	}	/**	 * Construct.	 * 	 * @param id	 *            component id	 * @param modelObject	 *            the model object (will be wrapped in a model)	 */	public Include(String id, String modelObject)	{		super(id, new Model(modelObject));	}	/**	 * Imports the contents of the url of the model object.	 * 	 * @return the imported contents	 */	protected String importAsString()	{		// gets the model object: should provide us with either an absolute or a		// relative url		String url = getModelObjectAsString();		if (!isAbsolute(url))		{			return importRelativeUrl(url);		}		else		{			return importAbsoluteUrl(url);		}	}	/**	 * @see org.apache.wicket.Component#onComponentTagBody(org.apache.wicket.markup.MarkupStream,	 *      org.apache.wicket.markup.ComponentTag)	 */	protected void onComponentTagBody(final MarkupStream markupStream, final ComponentTag openTag)	{		String content = importAsString();		replaceComponentTagBody(markupStream, openTag, content);	}	/**	 * Gets whether the given url is absolute (<tt>true</tt>) or relative (<tt>false</tt>).	 * 	 * @param url	 *            the url	 * @return whether the given url is absolute (<tt>true</tt>) or relative (<tt>false</tt>)	 */	protected final boolean isAbsolute(String url)	{		if (url == null)		{			return false;		}		// do a fast, simple check first		int colonPos;		if ((colonPos = url.indexOf(":")) == -1)		{			return false;		}		// if we DO have a colon, make sure that every character		// leading up to it is a valid scheme character		for (int i = 0; i < colonPos; i++)		{			if (VALID_SCHEME_CHARS.indexOf(url.charAt(i)) == -1)			{				return false;			}		}		// if so, we've got an absolute url		return true;	}	/**	 * Imports from a relative url.	 * 	 * @param url	 *            the url to import	 * @return the imported url's contents	 */	private String importRelativeUrl(CharSequence url)	{		// make the url absolute		HttpServletRequest req = ((WebRequest)getRequest()).getHttpServletRequest();		StringBuffer buildUrl = new StringBuffer(url.length());		String scheme = req.getScheme();		int port = req.getServerPort();		buildUrl.append(scheme); // http, https		buildUrl.append("://");		buildUrl.append(req.getServerName());		if ((scheme.equals("http") && port != 80) || (scheme.equals("https") && port != 443))		{			buildUrl.append(':');			buildUrl.append(req.getServerPort());		}		buildUrl.append(req.getContextPath()).append('/').append(url);		return importAbsoluteUrl(buildUrl);	}	/**	 * Imports from an absolute url.	 * 	 * @param url	 *            the url to import	 * @return the imported url's contents	 */	private String importAbsoluteUrl(CharSequence url)	{		try		{			return importUrl(new URL(url.toString()));		}		catch (MalformedURLException e)		{			throw new WicketRuntimeException(e);		}	}	/**	 * Imports the contents from the given url.	 * 	 * @param url	 *            the url	 * @return the imported contents	 */	private final String importUrl(URL url)	{		UrlResourceStream resourceStream = new UrlResourceStream(url);		String content = resourceStream.asString();		return content;	}}

⌨️ 快捷键说明

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