亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? servletcontext.html

?? javaservlet 2.4 spec api describe javaservlet 2.4 spec api describe
?? HTML
?? 第 1 頁 / 共 3 頁
字號:
 <p>This method was originally defined to write an  exception's stack trace and an explanatory error message to the servlet log file.</I></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/servlet/ServletContext.html#log(java.lang.String)">log</A></B>(java.lang.String&nbsp;msg)</CODE><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Writes the specified message to a servlet 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/servlet/ServletContext.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 <code>Throwable</code> exception to the servlet 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/servlet/ServletContext.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 servlet 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/servlet/ServletContext.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 servlet context.</TD></TR></TABLE>&nbsp;<P><!-- ============ FIELD DETAIL =========== --><!-- ========= CONSTRUCTOR DETAIL ======== --><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="getContext(java.lang.String)"><!-- --></A><H3>getContext</H3><PRE>public <A HREF="../../javax/servlet/ServletContext.html">ServletContext</A> <B>getContext</B>(java.lang.String&nbsp;uripath)</PRE><DL><DD>Returns a <code>ServletContext</code> object that  corresponds to a specified URL on the server. <p>This method allows servlets to gain access to the context for various parts of the server, and as needed obtain <A HREF="../../javax/servlet/RequestDispatcher.html"><CODE>RequestDispatcher</CODE></A> objects from the context. The given path must be begin with "/", is interpreted relative  to the server's document root and is matched against the context roots of other web applications hosted on this container.  <p>In a security conscious environment, the servlet container may return <code>null</code> for a given URL.<DD><DL><DT><B>Parameters:</B><DD><CODE>uripath</CODE> - a <code>String</code> specifying the context path of			another web application in the container.<DT><B>Returns:</B><DD>the <code>ServletContext</code> object that			corresponds to the named URL, or null if eithernone exists or the container wishes to restrict  			this access.<DT><B>See Also: </B><DD><A HREF="../../javax/servlet/RequestDispatcher.html"><CODE>RequestDispatcher</CODE></A></DL></DD></DL><HR><A NAME="getMajorVersion()"><!-- --></A><H3>getMajorVersion</H3><PRE>public int <B>getMajorVersion</B>()</PRE><DL><DD>Returns the major version of the Java Servlet API that this servlet container supports. All implementations that comply with Version 2.4 must have this method return the integer 2.<DD><DL><DT><B>Returns:</B><DD>2</DL></DD></DL><HR><A NAME="getMinorVersion()"><!-- --></A><H3>getMinorVersion</H3><PRE>public int <B>getMinorVersion</B>()</PRE><DL><DD>Returns the minor version of the Servlet API that this servlet container supports. All implementations that comply with Version 2.4 must have this method return the integer 4.<DD><DL><DT><B>Returns:</B><DD>4</DL></DD></DL><HR><A NAME="getMimeType(java.lang.String)"><!-- --></A><H3>getMimeType</H3><PRE>public 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 servlet container, and may be specified in a web application deployment descriptor. Common MIME types are <code>"text/html"</code> and <code>"image/gif"</code>.<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 file's MIME type</DL></DD></DL><HR><A NAME="getResourcePaths(java.lang.String)"><!-- --></A><H3>getResourcePaths</H3><PRE>public java.util.Set <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 whose longest sub-path matches the supplied path argument. Paths indicating subdirectory paths end with a '/'. The returned paths are all  relative to the root of the web application and have a leading '/'. For example, for a web application  containing<br><br> /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.OrderServlet.class,<br><br> getResourcePaths("/") returns {"/welcome.html", "/catalog/", "/customer/", "/WEB-INF/"}<br> getResourcePaths("/catalog/") returns {"/catalog/index.html", "/catalog/products.html", "/catalog/offers/"}.<br><DD><DL><DT><B>Parameters:</B><DD><CODE>path</CODE> - the partial path used to match the resources,					which must start with a /<DT><B>Returns:</B><DD>a Set containing the directory listing, or null if there are no resources in the web application whose path begins with the supplied path.<DT><B>Since: </B><DD>Servlet 2.3</DD></DL></DD></DL><HR><A NAME="getResource(java.lang.String)"><!-- --></A><H3>getResource</H3><PRE>public 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 "/" and is interpreted as relative to the current context root. <p>This method allows the servlet container to make a resource  available to servlets 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 servlet 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.<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<DT><B>Throws:</B><DD>java.net.MalformedURLException - if the pathname is not given in  						the correct form</DL></DD></DL><HR><A NAME="getResourceAsStream(java.lang.String)"><!-- --></A><H3>getResourceAsStream</H3><PRE>public java.io.InputStream <B>getResourceAsStream</B>(java.lang.String&nbsp;path)</PRE><DL><DD>Returns the resource located at the named path as an <code>InputStream</code> object. <p>The data in the <code>InputStream</code> can be  of any type or length. The path must be specified according to the rules given in <code>getResource</code>. This method returns <code>null</code> if no resource exists at the specified path.   <p>Meta-information such as content length and content type that is available via <code>getResource</code> method is lost when using this method. <p>The servlet container must implement the URL handlers and <code>URLConnection</code> objects necessary to access the resource. <p>This method is different from  <code>java.lang.Class.getResourceAsStream</code>, which uses a class loader. This method allows servlet containers  to make a resource available to a servlet from any location, without using a class loader.<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 <code>InputStream</code> returned to the 			servlet, or <code>null</code> if no resource			exists at the specified path</DL></DD></DL><HR><A NAME="getRequestDispatcher(java.lang.String)"><!-- --></A><H3>getRequestDispatcher</H3><PRE>public <A HREF="../../javax/servlet/RequestDispatcher.html">RequestDispatcher</A> <B>getRequestDispatcher</B>(java.lang.String&nbsp;path)</PRE><DL><DD>Returns a <A HREF="../../javax/servlet/RequestDispatcher.html"><CODE>RequestDispatcher</CODE></A> object that acts as a wrapper for the resource located at the given path. A <code>RequestDispatcher</code> object can be used to forward  a request to the resource or to include the resource in a response. The resource can be dynamic or static. <p>The pathname must begin with a "/" and is interpreted as relative to the current context root.  Use <code>getContext</code> to obtain a <code>RequestDispatcher</code> for resources in foreign contexts. This method returns <code>null</code> if the <code>ServletContext</code> cannot return a <code>RequestDispatcher</code>.<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>RequestDispatcher</code> object			that acts as a wrapper for the resource			at the specified path, or <code>null</code> if			the <code>ServletContext</code> cannot return			a <code>RequestDispatcher</code><DT><B>See Also: </B><DD><A HREF="../../javax/servlet/RequestDispatcher.html"><CODE>RequestDispatcher</CODE></A>, <A HREF="../../javax/servlet/ServletContext.html#getContext(java.lang.String)"><CODE>getContext(java.lang.String)</CODE></A></DL></DD></DL><HR><A NAME="getNamedDispatcher(java.lang.String)"><!-- --></A><H3>getNamedDispatcher</H3><PRE>public <A HREF="../../javax/servlet/RequestDispatcher.html">RequestDispatcher</A> <B>getNamedDispatcher</B>(java.lang.String&nbsp;name)</PRE><DL><DD>Returns a <A HREF="../../javax/servlet/RequestDispatcher.html"><CODE>RequestDispatcher</CODE></A> object that acts as a wrapper for the named servlet. <p>Servlets (and JSP pages also) may be given names via server  administration or via a web application deployment descriptor. A servlet instance can determine its name using  <A HREF="../../javax/servlet/ServletConfig.html#getServletName()"><CODE>ServletConfig.getServletName()</CODE></A>. <p>This method returns <code>null</code> if the  <code>ServletContext</code> cannot return a <code>RequestDispatcher</code> for any reason.<DD><DL><DT><B>Parameters:</B><DD><CODE>name</CODE> - a <code>String</code> specifying the name			of a servlet to wrap<DT><B>Returns:</B><DD>a <code>RequestDispatcher</code> object			that acts as a wrapper for the named servlet,			or <code>null</code> if the <code>ServletContext</code>			cannot return a <code>RequestDispatcher</code><DT><B>See Also: </B><DD><A HREF="../../javax/servlet/RequestDispatcher.html"><CODE>RequestDispatcher</CODE></A>, <A HREF="../../javax/servlet/ServletContext.html#getContext(java.lang.String)"><CODE>getContext(java.lang.String)</CODE></A>, <A HREF="../../javax/servlet/ServletConfig.html#getServletName()"><CODE>ServletConfig.getServletName()</CODE></A></DL></DD></DL><HR><A NAME="getServlet(java.lang.String)"><!-- --></A><H3>getServlet</H3><PRE>public <A HREF="../../javax/servlet/Servlet.html">Servlet</A> <B>getServlet</B>(java.lang.String&nbsp;name)                   throws <A HREF="../../javax/servlet/ServletException.html">ServletException</A></PRE><DL><DD><B>Deprecated.</B>&nbsp;<I>As of Java Servlet API 2.1, with no direct replacement. <p>This method was originally defined to retrieve a servlet from a <code>ServletContext</code>. In this version, this method  always returns <code>null</code> and remains only to preserve  binary compatibility. This method will be permanently removed  in a future version of the Java Servlet API. <p>In lieu of this method, servlets can share information using the  <code>ServletContext</code> class and can perform shared business logic by invoking methods on common non-servlet classes.</I><P></DL><HR>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
捆绑调教美女网站视频一区| 91精品国产免费久久综合| 欧美日韩综合色| 国产人久久人人人人爽| 午夜电影网一区| yourporn久久国产精品| 欧美成人国产一区二区| 午夜久久久久久久久久一区二区| 成人精品视频一区二区三区尤物| 欧美一区二区播放| 亚洲精品日韩一| 9久草视频在线视频精品| 久久久精品免费免费| 精品一区二区三区香蕉蜜桃| 欧美日韩大陆一区二区| 一区二区三区在线视频免费| 成人精品鲁一区一区二区| 精品va天堂亚洲国产| 五月天视频一区| 欧美视频一区二区三区四区 | 不卡电影一区二区三区| 久久美女艺术照精彩视频福利播放| 日韩激情视频在线观看| 欧美美女一区二区三区| 亚洲成人自拍网| 欧美日韩在线三级| 亚洲超碰97人人做人人爱| 欧美中文字幕一二三区视频| 亚洲日本在线看| 99久久精品久久久久久清纯| 国产精品美女久久久久久久久 | 国产一区91精品张津瑜| 精品免费99久久| 国产一区二区三区在线观看免费| 精品99一区二区| 国产一区二区日韩精品| 久久综合狠狠综合| 国产一区二区三区精品视频| 国产亚洲精品中文字幕| 成人免费看黄yyy456| 最新中文字幕一区二区三区| 91丨九色丨蝌蚪丨老版| 一区二区三区加勒比av| 欧美三级一区二区| 天天色 色综合| 精品久久一二三区| 高潮精品一区videoshd| 日韩一区在线看| 欧美日免费三级在线| 久久精品国产亚洲a| 日本一区二区免费在线观看视频 | 美女免费视频一区| 久久综合九色综合97_久久久| 国产91丝袜在线18| 亚洲一级二级在线| 精品入口麻豆88视频| 成人av免费观看| 亚洲成人一区在线| 久久久综合精品| 91免费看片在线观看| 天天亚洲美女在线视频| 久久久久久久久蜜桃| 欧洲在线/亚洲| 国产制服丝袜一区| 亚洲欧美日韩系列| 欧美一级视频精品观看| 成人91在线观看| 天堂影院一区二区| 国产精品日韩精品欧美在线| 在线观看国产精品网站| 国产精品综合av一区二区国产馆| 一区二区三区欧美久久| 久久综合九色欧美综合狠狠| 欧美午夜精品久久久久久超碰| 国内精品在线播放| 亚洲成人综合视频| 国产精品国产三级国产aⅴ原创| 91精品欧美一区二区三区综合在 | 一区二区三区在线观看视频| 精品福利一区二区三区免费视频| 99精品国产热久久91蜜凸| 美国三级日本三级久久99| 亚洲欧美激情在线| 国产视频视频一区| 2020国产精品| 欧美日韩大陆一区二区| 色综合一区二区| www..com久久爱| 舔着乳尖日韩一区| 亚洲免费在线观看视频| 欧美韩国一区二区| 日韩一级成人av| 欧美色倩网站大全免费| 94-欧美-setu| 国产成人啪免费观看软件| 日韩电影在线观看一区| 亚洲国产综合色| 亚洲日本电影在线| 欧美国产一区视频在线观看| 精品少妇一区二区三区视频免付费 | 激情另类小说区图片区视频区| 亚洲一区二区三区小说| 亚洲天堂av一区| 国产欧美日韩中文久久| 精品国产伦一区二区三区观看方式 | 国产精品一区在线观看你懂的| 蜜桃视频第一区免费观看| 午夜精品成人在线| 亚洲香肠在线观看| 亚洲国产日韩精品| 一区二区三区在线视频观看58 | 91国产免费看| 91黄色小视频| 欧美色老头old∨ideo| 欧美亚洲图片小说| 欧美色图在线观看| 欧美色图片你懂的| 欧美疯狂做受xxxx富婆| 欧美人妇做爰xxxⅹ性高电影| 欧美色老头old∨ideo| 欧美挠脚心视频网站| 欧美色图天堂网| 在线电影一区二区三区| 91麻豆精品91久久久久久清纯 | 久99久精品视频免费观看| 久久国产精品99久久人人澡| 激情综合色综合久久| 国产91清纯白嫩初高中在线观看| 成人黄色av网站在线| 一本大道久久a久久精二百| 欧美性videosxxxxx| 91精品国产免费| 久久久久久免费网| 中文字幕一区二区三区不卡在线| 自拍偷自拍亚洲精品播放| 亚洲男帅同性gay1069| 无码av中文一区二区三区桃花岛| 美国三级日本三级久久99| 国产很黄免费观看久久| 99国产精品久久| 欧美日韩高清一区二区三区| 精品久久久久香蕉网| 18欧美亚洲精品| 日韩精品每日更新| 国内偷窥港台综合视频在线播放| av中文字幕一区| 欧美精品视频www在线观看| 精品久久久久久久久久久久久久久| 国产精品欧美久久久久一区二区| 一区二区三区久久| 国产专区欧美精品| 色欧美片视频在线观看| 日韩视频一区二区| 国产精品久久久久久久午夜片 | 日韩欧美你懂的| 亚洲视频一二三区| 日韩国产欧美三级| 99久久国产综合精品色伊| 欧美一级一级性生活免费录像| 国产精品国产精品国产专区不蜜| 日韩电影一区二区三区| 91玉足脚交白嫩脚丫在线播放| 日韩一区二区三区观看| 一区二区三区在线观看动漫| 国产麻豆一精品一av一免费| 欧美日韩午夜精品| 亚洲欧美怡红院| 国产在线精品国自产拍免费| 欧美挠脚心视频网站| 综合欧美亚洲日本| 国产福利精品一区二区| 91精品国产综合久久香蕉麻豆| 亚洲精品ww久久久久久p站| 国产在线视频一区二区| 日韩一区二区三区四区| 亚洲黄色小说网站| aa级大片欧美| 国产欧美一区二区精品秋霞影院| 日本中文字幕一区二区有限公司| 色999日韩国产欧美一区二区| 欧美激情综合五月色丁香| 国产一区二区三区黄视频| 日韩三区在线观看| 日韩av不卡在线观看| 欧美系列日韩一区| 一区二区三区国产精华| 色综合久久久久综合99| 国产精品欧美一区喷水| 高清在线不卡av| 国产亚洲一区二区三区四区| 美腿丝袜亚洲三区| 日韩欧美激情四射| 青青国产91久久久久久| 在线不卡一区二区| 亚洲第一主播视频| 欧美日韩性生活| 日日夜夜免费精品| 欧美一区二区日韩一区二区| 手机精品视频在线观看| 91.com在线观看|