摘要:
1 public class PageBean { 2 3 private int page; // 第几页 4 private int pageSize; // 每页记录数 5 private int start; // 起始页 6 7 8 public PageBean(int page, int pageSize) {... 阅读全文
摘要:
在使用SimpleDateFormat之前,我们来了解一下这个类。SimpleDateFormat is a concrete class for formatting and parsing dates in a locale-sensitive manner. It allows for for 阅读全文