代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
获取自定义格式的时间
作者:
首君
/ 发布于
2015/11/4
/
649
import java.io.IOException; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; import cn.com.agree.ab.trade.core.Trade; /** * <DL> * <DT><B> 功能说明</B></DT> * 字符串处理工具 * </DL> * * @author * @since 2015-6-3 */ public class DateUtil { /** * <b>功能说明</b> 获取自定义格式的时间 * * @param format * 格式 * * <b>例如:</b> * 使用例子说明 String a=NetCheck.getdataString("yyyyMMdd"); * */ public static String getdataString(String format) { DateFormat dateFormat = new SimpleDateFormat(format); return dateFormat.format(new Date()); } public static String getNextDay(Date date, String format) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); calendar.add(Calendar.DAY_OF_MONTH, -7); date = calendar.getTime(); DateFormat dateFormat = new SimpleDateFormat(format); return dateFormat.format(date); } public static String getFormatDate(String datestr) throws ParseException { SimpleDateFormat df = new SimpleDateFormat("yyyyMMddhhmmss"); Date date = null; date = df.parse(datestr); DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); return dateFormat.format(date); } public static String getNextDay(Date date, String format, int days) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); calendar.add(Calendar.DAY_OF_MONTH, days); date = calendar.getTime(); DateFormat dateFormat = new SimpleDateFormat(format); return dateFormat.format(date); } public static List<String> getMonthWeekends(Trade trade,int month,int year) throws IOException{ List<String> hostDays = new ArrayList<String>(); Calendar cal = Calendar.getInstance(); cal.set(Calendar.YEAR, year); cal.set(Calendar.MONTH, month-1); cal.set(Calendar.DAY_OF_MONTH, 1); int startIndex = cal.get(Calendar.DAY_OF_WEEK) -1 ; // 0~6 表示 周日 ~ 周六 int endIndex = startIndex + getLastDayOfMonth(year, month) - 1; int startday = 1; for (int i = 0; i < 42; i++) { if (i >= startIndex && i <= endIndex) { cal.set(Calendar.DAY_OF_MONTH, startday); if(cal.get(Calendar.DAY_OF_WEEK)==1||cal.get(Calendar.DAY_OF_WEEK)==7){ hostDays.add(startday+""); } startday++; } } return hostDays; } public static boolean isLeapYear(int year) { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0); } public static int getLastDayOfMonth(int year, int month) { if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) { return 31; } if (month == 4 || month == 6 || month == 9 || month == 11) { return 30; } if (month == 2) { if (isLeapYear(year)) { return 29; } else { return 28; } } return 0; } }
试试其它关键字
自定义格式
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
首君
贡献的其它代码
(
39
)
.
数组操作ArrayUtil
.
python 抓取搜狗指定公众号
.
UUID工具类
.
利用POI操作PPT
.
个性化的圆角代码
.
获取本机外网ip
.
装饰器判断用户是否已经登录
.
创建存储过程
.
产生MAXN以内的所有素数
.
SqlServer2000中快速导出登陆信息脚本
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3