摘要:
package com.dmk; public class Book { private String id; private String name; private double price; public Book() { } public Book(String id, String nam 阅读全文
摘要:
<%-- Created by IntelliJ IDEA. User: 97442 Date: 2022/4/24 Time: 20:05 To change this template use File | Settings | File Templates. --%> <%@ page con 阅读全文
摘要:
1. 当前时间为: <% Date d = new Date();//获取系统时间 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置时间格式 out.print(sdf.format(d)+"</br>") 阅读全文