xml.jsp
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <?xml version="1.0"?>
  2. <!--
  3.  Licensed to the Apache Software Foundation (ASF) under one or more
  4.   contributor license agreements.  See the NOTICE file distributed with
  5.   this work for additional information regarding copyright ownership.
  6.   The ASF licenses this file to You under the Apache License, Version 2.0
  7.   (the "License"); you may not use this file except in compliance with
  8.   the License.  You may obtain a copy of the License at
  9.       http://www.apache.org/licenses/LICENSE-2.0
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
  17.   version="1.2">
  18. <jsp:directive.page contentType="text/html"/>
  19. <jsp:directive.page import="java.util.Date, java.util.Locale"/>
  20. <jsp:directive.page import="java.text.*"/>
  21. <jsp:declaration>
  22.   String getDateTimeStr(Locale l) {
  23.     DateFormat df = SimpleDateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM, l);
  24.     return df.format(new Date());
  25.   }
  26. </jsp:declaration>
  27. <html>
  28. <head>
  29.   <title>Example JSP in XML format</title>
  30. </head>
  31. <body>
  32. This is the output of a simple JSP using XML format. 
  33. <br />
  34. <div>Use a jsp:scriptlet to loop from 1 to 10: </div>
  35. <jsp:scriptlet>
  36. // Note we need to declare CDATA because we don't escape the less than symbol
  37. <![CDATA[
  38.   for (int i = 1; i<=10; i++) {
  39.     out.println(i);
  40.     if (i < 10) {
  41.       out.println(", ");
  42.     }
  43.   }
  44. ]]>
  45. </jsp:scriptlet>
  46. <!-- Because I omit br's end tag, declare it as CDATA -->
  47. <![CDATA[
  48.   <br><br>
  49. ]]>
  50. <div align="left">
  51.   Use a jsp:expression to write the date and time in the browser's locale: 
  52.   <jsp:expression>getDateTimeStr(request.getLocale())</jsp:expression>
  53. </div>
  54. <jsp:text>
  55.   &lt;p&gt;This sentence is enclosed in a jsp:text element.&lt;/p&gt;
  56. </jsp:text>
  57. </body>
  58. </html>
  59. </jsp:root>