JSP (7)--jsp directives

Source: Internet
Author: User
Tags date date now include
JS in the previous tutorial, we have used the java.util.Date. One can ask: Why not use import java.util.*? In fact, the import statement can also be used in JSPs, but its syntax is somewhat different from that of normal Java. An example is given below:

<%@ page import="java.util.*" %>

<HTML>

<BODY>

<%

System.out.println( "Evaluating date now" );

Date date = new Date();

%>

Hello! The time is now <%= date %>

</BODY>

</HTML>

The first line in the above code we call a "directive". This JSP "directive" is preceded by a <%@ character. This is a "page directive". This "page directive" can contain all the imported items. If you want to introduce more than one project, you can use commas (,) to separate projects, such as:

<%@ page import= "java.util.*,java.text.*"%>

You can have more than one JSP directives in page directive. In addition to "page directive", other useful directives include include and taglib. In a later tutorial, we will discuss the taglib in detail. Only include directive is discussed here.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.