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

📄 portletcontext.html.svn-base

📁 portal越来越流行了
💻 SVN-BASE
📖 第 1 页 / 共 3 页
字号:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Writes the specified message to a portlet log file, usually an event log.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>&nbsp;void</CODE></FONT></TD><TD><CODE><B><A HREF="../../javax/portlet/PortletContext.html#log(java.lang.String, java.lang.Throwable)">log</A></B>(java.lang.String&nbsp;message,    java.lang.Throwable&nbsp;throwable)</CODE><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Writes an explanatory message and a stack trace for a given  Throwable exception to the portlet log file.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>&nbsp;void</CODE></FONT></TD><TD><CODE><B><A HREF="../../javax/portlet/PortletContext.html#removeAttribute(java.lang.String)">removeAttribute</A></B>(java.lang.String&nbsp;name)</CODE><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Removes the attribute with the given name from the portlet context.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>&nbsp;void</CODE></FONT></TD><TD><CODE><B><A HREF="../../javax/portlet/PortletContext.html#setAttribute(java.lang.String, java.lang.Object)">setAttribute</A></B>(java.lang.String&nbsp;name,             java.lang.Object&nbsp;object)</CODE><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Binds an object to a given attribute name in this portlet context.</TD></TR></TABLE>&nbsp;<P><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"><B>Method Detail</B></FONT></TH></TR></TABLE><A NAME="getServerInfo()"><!-- --></A><H3>getServerInfo</H3><PRE>java.lang.String <B>getServerInfo</B>()</PRE><DL><DD>Returns the name and version of the portlet container in which the portlet is running. <P> The form of the returned string is <code>containername/versionnumber</code>.<P><DD><DL><DT><B>Returns:</B><DD>the string containing at least name and version number</DL></DD></DL><HR><A NAME="getRequestDispatcher(java.lang.String)"><!-- --></A><H3>getRequestDispatcher</H3><PRE><A HREF="../../javax/portlet/PortletRequestDispatcher.html" title="interface in javax.portlet">PortletRequestDispatcher</A> <B>getRequestDispatcher</B>(java.lang.String&nbsp;path)</PRE><DL><DD>Returns a <A HREF="../../javax/portlet/PortletRequestDispatcher.html" title="interface in javax.portlet"><CODE>PortletRequestDispatcher</CODE></A> object that acts as a wrapper for the resource located at the given path. A <code>PortletRequestDispatcher</code> object can be used include the resource in a response. The resource can be dynamic or static.  <p>The pathname must begin with a slash (<code> / </code>) and is interpreted as relative to the current context root.  <p>This method returns <code>null</code> if the <code>PortletContext</code> cannot return a <code>PortletRequestDispatcher</code> for any reason.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>path</CODE> - a <code>String</code> specifying the pathname               to the resource<DT><B>Returns:</B><DD>a <code>PortletRequestDispatcher</code> object         that acts as a wrapper for the resource         at the specified path.<DT><B>See Also:</B><DD><A HREF="../../javax/portlet/PortletRequestDispatcher.html" title="interface in javax.portlet"><CODE>PortletRequestDispatcher</CODE></A></DL></DD></DL><HR><A NAME="getNamedDispatcher(java.lang.String)"><!-- --></A><H3>getNamedDispatcher</H3><PRE><A HREF="../../javax/portlet/PortletRequestDispatcher.html" title="interface in javax.portlet">PortletRequestDispatcher</A> <B>getNamedDispatcher</B>(java.lang.String&nbsp;name)</PRE><DL><DD>Returns a <A HREF="../../javax/portlet/PortletRequestDispatcher.html" title="interface in javax.portlet"><CODE>PortletRequestDispatcher</CODE></A> object that acts as a wrapper for the named servlet. <p>Servlets (and also JSP pages) may be given names via server  administration or via a web application deployment descriptor. <p>This method returns <code>null</code> if the  <code>PortletContext</code> cannot return a  <code>PortletRequestDispatcher</code> for any reason.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>name</CODE> - a <code>String</code> specifying the name                        of a servlet to be wrapped<DT><B>Returns:</B><DD>a <code>PortletRequestDispatcher</code> object                        that acts as a wrapper for the named servlet<DT><B>See Also:</B><DD><A HREF="../../javax/portlet/PortletRequestDispatcher.html" title="interface in javax.portlet"><CODE>PortletRequestDispatcher</CODE></A></DL></DD></DL><HR><A NAME="getResourceAsStream(java.lang.String)"><!-- --></A><H3>getResourceAsStream</H3><PRE>java.io.InputStream <B>getResourceAsStream</B>(java.lang.String&nbsp;path)</PRE><DL><DD>Returns the resource located at the given path as an InputStream object. The data in the InputStream can be of any type or length. The method returns  null if no resource exists at the given path. <p> In order to access protected resources the path has to be prefixed with  <code>/WEB-INF/</code> (for example <code>/WEB-INF/myportlet/myportlet.jsp</code>).  Otherwise, the direct path is used (for example <code>/myportlet/myportlet.jsp</code>).<P><DD><DL><DT><B>Parameters:</B><DD><CODE>path</CODE> - the path to the resource<DT><B>Returns:</B><DD>the input stream</DL></DD></DL><HR><A NAME="getMajorVersion()"><!-- --></A><H3>getMajorVersion</H3><PRE>int <B>getMajorVersion</B>()</PRE><DL><DD>Returns the major version of the Portlet API that this portlet container supports.<P><DD><DL><DT><B>Returns:</B><DD>the major version<DT><B>See Also:</B><DD><A HREF="../../javax/portlet/PortletContext.html#getMinorVersion()"><CODE>getMinorVersion()</CODE></A></DL></DD></DL><HR><A NAME="getMinorVersion()"><!-- --></A><H3>getMinorVersion</H3><PRE>int <B>getMinorVersion</B>()</PRE><DL><DD>Returns the minor version of the Portlet API that this portlet container supports.<P><DD><DL><DT><B>Returns:</B><DD>the minor version<DT><B>See Also:</B><DD><A HREF="../../javax/portlet/PortletContext.html#getMajorVersion()"><CODE>getMajorVersion()</CODE></A></DL></DD></DL><HR><A NAME="getMimeType(java.lang.String)"><!-- --></A><H3>getMimeType</H3><PRE>java.lang.String <B>getMimeType</B>(java.lang.String&nbsp;file)</PRE><DL><DD>Returns the MIME type of the specified file, or <code>null</code> if  the MIME type is not known. The MIME type is determined by the configuration of the portlet container and may be specified in a web application deployment descriptor. Common MIME types are <code>text/html</code> and <code>image/gif</code>.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>file</CODE> - a <code>String</code> specifying the name                        of a file<DT><B>Returns:</B><DD>a <code>String</code> specifying the MIME type of the file</DL></DD></DL><HR><A NAME="getRealPath(java.lang.String)"><!-- --></A><H3>getRealPath</H3><PRE>java.lang.String <B>getRealPath</B>(java.lang.String&nbsp;path)</PRE><DL><DD>Returns a <code>String</code> containing the real path  for a given virtual path. For example, the path <code>/index.html</code> returns the absolute file path of the portlet container file system. <p>The real path returned will be in a form appropriate to the computer and operating system on which the portlet container is running, including the proper path separators. This method returns <code>null</code> if the portlet container cannot translate the virtual path to a real path for any reason (such as when the content is being made available from a <code>.war</code> archive).<P><DD><DL><DT><B>Parameters:</B><DD><CODE>path</CODE> - a <code>String</code> specifying a virtual path<DT><B>Returns:</B><DD>a <code>String</code> specifying the real path,                    or null if the transformation cannot be performed.</DL></DD></DL><HR><A NAME="getResourcePaths(java.lang.String)"><!-- --></A><H3>getResourcePaths</H3><PRE>java.util.Set&lt;java.lang.String&gt; <B>getResourcePaths</B>(java.lang.String&nbsp;path)</PRE><DL><DD>Returns a directory-like listing of all the paths to resources within  the web application longest sub-path of which  matches the supplied path argument. Paths indicating subdirectory paths  end with a slash (<code>/</code>). The returned paths are all  relative to the root of the web application and have a leading slash.  For example, for a web application  containing<br><br> <code> /welcome.html<br> /catalog/index.html<br> /catalog/products.html<br> /catalog/offers/books.html<br> /catalog/offers/music.html<br> /customer/login.jsp<br> /WEB-INF/web.xml<br> /WEB-INF/classes/com.acme.OrderPortlet.class,<br><br> </code> <code>getResourcePaths("/")</code> returns  <code>{"/welcome.html", "/catalog/", "/customer/", "/WEB-INF/"}</code><br> <code>getResourcePaths("/catalog/")</code> returns  <code>{"/catalog/index.html", "/catalog/products.html", "/catalog/offers/"}</code>.<br><P><DD><DL><DT><B>Parameters:</B><DD><CODE>path</CODE> - the partial path used to match the resources, which must start with a slash<DT><B>Returns:</B><DD>a Set containing the directory listing, or <code>null</code> if there              are no resources in the web application of which the path             begins with the supplied path.</DL></DD></DL><HR><A NAME="getResource(java.lang.String)"><!-- --></A><H3>getResource</H3><PRE>java.net.URL <B>getResource</B>(java.lang.String&nbsp;path)                         throws java.net.MalformedURLException</PRE><DL><DD>Returns a URL to the resource that is mapped to a specified path. The path must begin with a slash (<code>/</code>) and is interpreted as relative to the current context root. <p>This method allows the portlet container to make a resource  available to portlets from any source. Resources  can be located on a local or remote file system, in a database, or in a <code>.war</code> file.  <p>The portlet container must implement the URL handlers and <code>URLConnection</code> objects that are necessary to access the resource. <p>This method returns <code>null</code> if no resource is mapped to the pathname. <p>Some containers may allow writing to the URL returned by this method using the methods of the URL class. <p>The resource content is returned directly, so be aware that  requesting a <code>.jsp</code> page returns the JSP source code. Use a <code>RequestDispatcher</code> instead to include results of  an execution. <p>This method has a different purpose than <code>java.lang.Class.getResource</code>, which looks up resources based on a class loader. This method does not use class loaders.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>path</CODE> - a <code>String</code> specifying                                                the path to the resource<DT><B>Returns:</B><DD>the resource located at the named path,                                                or <code>null</code> if there is no resource                                                at that path

⌨️ 快捷键说明

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