Home php教程 PHP源码 Java generates html perpetual calendar

Java generates html perpetual calendar

Nov 11, 2016 am 10:52 AM

package Str;  
   
import java.util.Calendar;  
/** 
 *  
 *  
 * @project Tool 
 * @type Test8 
 * @Description  
 * @author xuyw 
 * @email xyw10000@163.com 
 * @date 2014-8-9 下午01:45:02 
 * @version 1.0 
 * 
 */ 
public class Test8 {  
   
    /** 
     * @param args 
     */ 
    public static void main(String[] args) {  
        Calendar calendar = Calendar.getInstance();  
        calendar.add(Calendar.MONTH, 0);  
        calendar.set(Calendar.DAY_OF_MONTH, 1);// 设置为1号,当前日期既为本月第一天  
        int firstDay = calendar.get(Calendar.DAY_OF_WEEK) - 1;  
        int monthDays = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);// 当月最后一天  
   
        StringBuilder sbd = new StringBuilder();  
        sbd.append("<table cellspacing=&#39;0&#39; style=&#39;background: url(./img/body.png);&#39;>");  
        sbd.append("<thead><tr>");  
        sbd  
                .append("<th>星期天</th><th>星期一</th><th>星期二</th><th>星期三</th><th>星期四</th><th>星期五</th><th>星期六</th>");  
        sbd.append("</tr></thead>");  
        sbd.append("<tbody><tr>");  
        // 第一行  
        int weekend = 0;// 每周的最后一天的日期  
        for (int i = 0; i < 7; i++) {  
            if (i < firstDay) {  
                sbd.append("<td></td>");  
            } else {  
                sbd.append("<td>" + (i - firstDay + 1) + "</td>");  
            }  
            weekend = i - firstDay + 1;  
        }  
        sbd.append("</tr>");  
        while (weekend < monthDays) {  
            sbd.append("<tr>");  
   
            for (int i = 0; i < 7; i++) {  
                if (weekend + i < monthDays)// 数字小于等于当前月的最后一天  
                {  
                    sbd.append("<td>" + (i + weekend + 1) + "</td>");  
                } else {  
                    sbd.append("<td></td>");  
                }  
   
            }  
            sbd.append("</tr>");  
            weekend += 7;// 周末再加7天  
        }  
   
        sbd.append("<tbody></table>");  
        System.out.println(sbd.toString());  
    }  
}
Copy after login

In the previous test, I used the console to generate html tags. Just display the generated html tags on the page. The effect picture is as follows

Java generates html perpetual calendar

css

* { 
    /* old-style reset here :) */ 
    border: 0px; 
    padding: 0px; 
} 
body { 
    font-family: Helvetica; 
    background: white; 
    text-align: center; 
    /* background: url(../img/body.png) repeat-x; */} 
body h1 { 
    padding-top: 20px; 
    font-size: 36px; 
    color: #335; 
} 
p{font-size:26px;} 
table { 
    border-collapse: separate; 
    border: 1px solid #9DABCE; 
    border-width: 1px 1px 1px 1px; 
    margin: 10px auto; 
    font-size: 30px; 
} 
   
   
td, th { 
    width: 81px; 
    height: 81px; 
    text-align: center; 
    vertical-align: middle; 
    /*background: url(../img/cells.png);*/ 
    color: #444; 
    position: relative; 
} 
th { 
    height: 30px; 
    font-weight: bold; 
    font-size: 14px; 
} 
   
td.sign_in { 
    background-position: 81px 0px; 
    color: red; 
} 
   
td.sign_no{ 
    background: url(../img/cells.png); 
}
Copy after login


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)