ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/examples/jsp/xml/xml.jsp

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/examples/jsp/xml/xml.jsp
Status
scanned
Type
file
Name
xml.jsp
Extension
.jsp
Programming language
Java Server Page
Mime type
text/xml
File type
XML 1.0 document, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2128 (2.1 KB)
MD5
1949df505c87484bd381bae9d262771e
SHA1
6723d984c224fcf244abfd8fd7b79d941756a082
SHA256
f4bf1560f2443daaa983facf5bd44d91045d94bac3213666a0e226e38f21df9e
SHA512

      
    
SHA1_git
d48c9072eccd818106e9ea4ea7c7736d6840a374
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
xml.jsp | 2.1 KB |

<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"> <jsp:directive.page contentType="text/html"/> <jsp:directive.page import="java.util.Date, java.util.Locale"/> <jsp:directive.page import="java.text.*"/> <jsp:declaration> String getDateTimeStr(Locale l) { DateFormat df = SimpleDateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM, l); return df.format(new Date()); } </jsp:declaration> <html> <head> <title>Example JSP in XML format</title> </head> <body> This is the output of a simple JSP using XML format. <br /> <div>Use a jsp:scriptlet to loop from 1 to 10: </div> <jsp:scriptlet> // Note we need to declare CDATA because we don't escape the less than symbol <![CDATA[ for (int i = 1; i<=10; i++) { out.println(i); if (i < 10) { out.println(", "); } } ]]> </jsp:scriptlet> <!-- Because I omit br's end tag, declare it as CDATA --> <![CDATA[ <br><br> ]]> <div align="left"> Use a jsp:expression to write the date and time in the browser's locale: <jsp:expression>getDateTimeStr(request.getLocale())</jsp:expression> </div> <jsp:text> &lt;p&gt;This sentence is enclosed in a jsp:text element.&lt;/p&gt; </jsp:text> </body> </html> </jsp:root>
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
40.2
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 10 10
http://java.sun.com/JSP/Page 18 18