Fields of the Calendar Class : UseBean « JSP « Java Tutorial






<%@ page import="java.util.*" %>
<HTML>
    <HEAD>
        <TITLE>Fields of the Calendar Class</TITLE>
    </HEAD>

    <BODY>
        <H1>Fields of the Calendar Class</H1>
        <%
            String dateString = new String();

            GregorianCalendar calendar = new GregorianCalendar();
            Date date1 = new Date();
            calendar.setTime(date1);

            dateString += "Calendar.YEAR is " + calendar.get(Calendar.YEAR) + "<BR>";
            dateString += "Calendar.MONTH is " + calendar.get(Calendar.MONTH) + "<BR>";
            dateString += "Calendar.WEEK_OF_YEAR is " + calendar.get(Calendar.WEEK_OF_YEAR) + 
                "<BR>";
            dateString += "Calendar.WEEK_OF_MONTH is " + calendar.get(Calendar.WEEK_OF_MONTH) 
                + "<BR>";
            dateString += "Calendar.DATE is " + calendar.get(Calendar.DATE) + "<BR>";
            dateString += "Calendar.DAY_OF_MONTH is " + calendar.get(Calendar.DAY_OF_MONTH) + 
                "<BR>";
            dateString += "Calendar.DAY_OF_YEAR is " + calendar.get(Calendar.DAY_OF_YEAR) + 
                "<BR>";
            dateString += "Calendar.DAY_OF_WEEK is " + calendar.get(Calendar.DAY_OF_WEEK) + 
                "<BR>";
            dateString += "Calendar.DAY_OF_WEEK_IN_MONTH is "
                + calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH) + "<BR>";
            dateString += "Calendar.AM_PM is " + calendar.get(Calendar.AM_PM) + "<BR>";
            dateString += "Calendar.HOUR is " + calendar.get(Calendar.HOUR) + "<BR>";
            dateString += "Calendar.HOUR_OF_DAY is " + calendar.get(Calendar.HOUR_OF_DAY) + 
                "<BR>";
            dateString += "Calendar.MINUTE is " + calendar.get(Calendar.MINUTE) + "<BR>";
            dateString += "Calendar.SECOND is " + calendar.get(Calendar.SECOND) + "<BR>";
            dateString += "Calendar.MILLISECOND is " + calendar.get(Calendar.MILLISECOND) + 
                "<BR>";

            dateString += "Resetting the date!<BR>";

            calendar.set(2005, 11, 31, 23, 59);

            dateString += "Calendar.YEAR is " + calendar.get(Calendar.YEAR) + "<BR>";
            dateString += "Calendar.MONTH is " + calendar.get(Calendar.MONTH) + "<BR>";
            dateString += "Calendar.WEEK_OF_YEAR is " + calendar.get(Calendar.WEEK_OF_YEAR) + 
                "<BR>";
            dateString += "Calendar.WEEK_OF_MONTH is " + calendar.get(Calendar.WEEK_OF_MONTH) 
                + "<BR>";
            dateString += "Calendar.DATE is " + calendar.get(Calendar.DATE) + "<BR>";
            dateString += "Calendar.DAY_OF_MONTH is " + calendar.get(Calendar.DAY_OF_MONTH) + 
                "<BR>";
            dateString += "Calendar.DAY_OF_YEAR is " + calendar.get(Calendar.DAY_OF_YEAR) + 
                "<BR>";
            dateString += "Calendar.DAY_OF_WEEK is " + calendar.get(Calendar.DAY_OF_WEEK) + 
                "<BR>";
            dateString += "Calendar.DAY_OF_WEEK_IN_MONTH is "
                + calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH) + "<BR>";
            dateString += "Calendar.AM_PM is " + calendar.get(Calendar.AM_PM) + "<BR>";
            dateString += "Calendar.HOUR is " + calendar.get(Calendar.HOUR) + "<BR>";
            dateString += "Calendar.HOUR_OF_DAY is " + calendar.get(Calendar.HOUR_OF_DAY) +
                "<BR>";
            dateString += "Calendar.MINUTE is " + calendar.get(Calendar.MINUTE) + "<BR>";
            dateString += "Calendar.SECOND is " + calendar.get(Calendar.SECOND) + "<BR>";
            dateString += "Calendar.MILLISECOND is " + calendar.get(Calendar.MILLISECOND) + 
                "<BR>";
            out.println(dateString);
        %>
    </BODY>
</HTML>








23.43.UseBean
23.43.1.Import JavaBeans In JSP Page
23.43.2.Load JavaBeans In JSP Page
23.43.3.Using 'useBean' To Reference A Java Bean
23.43.4.Using initialized field in jsp page
23.43.5.Reference Package Name in JSP Page
23.43.6.Reference Calendar Bean
23.43.7.JSP Number Guess Bean
23.43.8.JSP Helper Bean HTMLFilter
23.43.9.Get/Set Value Using JSP Set Property
23.43.10.Call Setter In Java Bean To Change its Property Value
23.43.11.Call Bean Constructor To Pass In Message
23.43.12.Using the Date Class
23.43.13.Fields of the Calendar Class