Java常用工具类之时间转换(注释乱码,全)
package com.wazn.learn.util; import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List; /**
* ͨ����
*
* @author root
*/
public class DateUtil {
private static SimpleDateFormat date = new SimpleDateFormat("yyyy-MM-dd");
private static SimpleDateFormat datetime = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");
public static Date getNowDate(){
return new Date();
}
// ****************************��ǰʱ�����****************************
/**
* ����� yyyy-MM-dd Ϊ��ʽ�ĵ�ǰʱ���ַ���
*
* @return String
*/
public static String getCurrentTimeByDay() {
String time = date.format(new Date(System.currentTimeMillis()));
return time;
} /**
* ����� yyyy-MM-dd HH:mm:ss Ϊ��ʽ�ĵ�ǰʱ���ַ���
*
* @return String
*/
public static String getCurrentTimeBySecond() {
String time = datetime.format(new Date(System.currentTimeMillis()));
return time;
} /**
* ��ø�����ʽ�ĵ�ǰʱ���ַ���
*
* @param give
* String ������ʱ���ʽ
* @return String
*/
public static String getCurrentTime(String give) {
SimpleDateFormat temp = new SimpleDateFormat(give);
return temp.format(new Date(System.currentTimeMillis()));
} // ****************************Stringת��ΪDate****************************
/**
* ��Stringת����date
*
* @throws ParseException
* */
public static Date pStringToDate(String str, String sfgs)
throws ParseException {
SimpleDateFormat sf = new SimpleDateFormat(sfgs);
return sf.parse(str);
} /**
* ��Stringת����date ��ʽΪyyyy-MM-dd hh:mm:ss
*
* @throws ParseException
* */
public static Date pStringToDate(String str) throws ParseException {
return datetime.parse(str);
} // ****************************Dateת��ΪString****************************
/**
* ת�������ڸ�ʽ���ַ��� ��ʽΪyyyy-MM-dd
*
* @param Object
* @return String
*/
public static String dateFormat(Date o) {
if (o == null) {
return "";
}
return date.format(o);
} /**
* ת����ʱ���ʽ���ַ��� ��ʽΪyyyy-MM-dd hh:mm:ss
*
* @param Date
* @return String
*/
public static String dateTimeFormat(Date o) {
if (o == null) {
return "";
}
return datetime.format(o);
} /**
* ת���ɸ���ʱ���ʽ���ַ���
*
* @param Date
* @param String
* @return String
*/
public static String getDateFormat(Date d, String format) {
return new SimpleDateFormat(format).format(d);
} /**
* ���ڸ�ʽ��(yyyy��MM��dd��)
*
* @param Date
* @return String
* */
public static String fDateCNYR(Date date) {
return getDateFormat(date, "yyyy��MM��dd��");
} /**
* ���ڸ�ʽ��(yyyy��MM��dd�� HH:mm)
*
* @param Date
* @return String
* */
public static String fDateCNYRS(Date date) {
return getDateFormat(date, "yyyy��MM��dd�� HH��");
} /**
* ���ڸ�ʽ��(yyyy��MM��dd�� HH:mm)
*
* @param Date
* @return String
* */
public static String fDateCNYRSF(Date date) {
return getDateFormat(date, "yyyy��MM��dd�� HH:mm");
} /**
* ���ڸ�ʽ��(yyyy��MM��dd�� HH:mm:ss)
*
* @param Date
* @return String
* */
public static String fDateCNYRSFM(Date date) {
return getDateFormat(date, "yyyy��MM��dd�� HH:mm:ss");
} // ****************************ʱ���ʽ��Stringת��ΪString****************************
/**
* ���ݸ�����ʱ���ʽ�ַ�����ȡ������ʽ���ַ���
*
* @param d
* String ����ʱ���ʽΪyyyy-MM-dd HH:mm:ss
* @param format
* String �����ĸ�ʽ
* @return String
*/
public static String getDateFormat(String d, String format)
throws ParseException {
Date date = datetime.parse(d);
return getDateFormat(date, format);
} // ****************************ʱ���ʽ��Stringת��Ϊlong****************************
/**
* ͨ���ַ������long��ʱ��
*
* @param String
* @return long
*/
public static long getDateFromStr(String dateStr) {
long temp = 0L;
Date date = null;
try {
date = datetime.parse(dateStr);
} catch (Exception e) {
e.printStackTrace();
return temp;
}
temp = date.getTime();
return temp;
} // ****************************Dateת��Ϊ������ʽ��Date****************************
/**
* ���ڸ�ʽ����2014-03-04��
*
* @param Date
* @return Date
* @throws ParseException
* */
public static Date fDate(Date dat) throws ParseException {
String dateStr = date.format(dat);
return date.parse(dateStr);
} /**
* ͨ����ʼʱ��ͼ����ý���ʱ�䡣
*
* @param String
* @param int
* @return String
*/
public static String getEndTime(String start, int span) {
if (isNullOrNone(start) || span == 0) {
return null;
}
long temp = getDateFromStr(start);
temp += span * 60L * 1000L;
return datetime.format(new Date(temp));
} /**
* ��ʽ���ַ�������2013-10-20 00:00:00.000000��Ϊ2013-10-20 00:00:00
*
* @param String
* str
* @return String
* @throws ParseException
* */
public static String getFormatStringDay(String str) throws ParseException {
Date date = datetime.parse(str);
return datetime.format(date);
} /**
* �ж��Ƿ�Ϊ��
*
* @param String
* @return boolean
*/
public static boolean isNullOrNone(String src) {
if (null == src || "".equals(src)) {
return true;
}
return false;
} /**
* ����ַ������ȴ���25���ȡǰ25���ַ��������ij�ʡ�Ժ�
*
* @param String
* @return String
*/
public static String showCount(String str) {
if (str != null) {
if (str.length() > 25) {
str = str.substring(0, 25);
str = str + "...";
}
} else {
str = "";
}
return str;
} /**
* �Ƿ�������ڸ�ʽyyyy-MM-dd
*
* @param day
* String �����ַ���
* @return boolean
*/
public static boolean isFormatDay(String day) {
return day
.matches("(([0-9]{3}[1-9]|[0-9]{2}[1-9][0-9]{1}|[0-9]{1}[1-9][0-9]{2}|[1-9][0-9]{3})-(((0[13578]|1[02])-(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)-(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8]))))|((([0-9]{2})(0[48]|[2468][048]|[13579][26])|((0[48]|[2468][048]|[3579][26])00))-02-29)");
} /**
* �Ƿ����ʱ���ʽHH:mm:ss
*
* @param time
* String ʱ���ַ���
* @return boolean
*/
public static boolean isFormatTime(String time) {
return time
.matches("(0[1-9]|1[0-9]|2[0-4]):(0[1-9]|[1-5][0-9]):(0[1-9]|[1-5][0-9])(\\.000000)?");
} /**
* �Ƿ����ʱ���ʽyyyy-MM-dd HH:mm:ss
*
* @param time
* String ʱ���ַ���
* @return boolean
*/
public static boolean isFormat(String time) {
String[] temp = time.split(" ");
return isFormatDay(temp[0]) && isFormatTime(temp[1]);
} /**
* ͨ���������ꡢ�¡��ܻ�ø����ڵ�ÿһ������
*
* @param year
* int ��
* @param month
* int ��
* @param week
* int ��
* @return List<Date> ���������
*/
public static List<Date> getDayByWeek(int year, int month, int week) {
List<Date> list = new ArrayList<Date>();
// �ȹ���������.
Calendar c = Calendar.getInstance();
c.set(Calendar.YEAR, year);
// ��������:
c.set(Calendar.MONTH, month - 1);
// ��������:
c.set(Calendar.WEEK_OF_MONTH, week);
// �õ����ܵ�һ��:
for (int i = 0; i < 6; i++) {
c.set(Calendar.DAY_OF_WEEK, i + 2);
list.add(c.getTime());
}
// ���һ��:
c.set(Calendar.WEEK_OF_MONTH, week + 1);
c.set(Calendar.DAY_OF_WEEK, 1);
list.add(c.getTime());
return list;
} /**
* ��õ�ǰ�����DZ��µĵڼ���
*
* @return int
*/
public static int getCurWeekNoOfMonth() {
Date date = new Date(System.currentTimeMillis());
Calendar calendar = Calendar.getInstance();
calendar.setFirstDayOfWeek(Calendar.MONDAY);
calendar.setTime(date);
return calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH);
} /**
* ��õ�ǰ���������ڼ�
*
* @return int
*/
public static int getCurWeekNo(String dat) {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = null;
try {
date = format.parse(dat);
} catch (ParseException e) {
e.printStackTrace();
}
Calendar calendar = Calendar.getInstance();
calendar.setFirstDayOfWeek(Calendar.MONDAY);
calendar.setTime(date);
return calendar.get(Calendar.DAY_OF_WEEK);
} /**
* ��õ�ǰ�����
*
* @return
*/
public static int getCurrentYear() {
Calendar calendar = Calendar.getInstance();
return calendar.get(Calendar.YEAR);
} /**
* ��õ�ǰ���·�
*
* @return
*/
public static int getCurrentMonth() {
Calendar calendar = Calendar.getInstance();
return calendar.get(Calendar.MONTH) + 1;
} /**
* ��õ�ǰ��������
*
* @return
*/
public static int getCurrentDay() {
Calendar calendar = Calendar.getInstance();
return calendar.get(Calendar.DATE);
}
/**
* ��ȡ�������һ��
*
* @param Date date
* @param String format
* @return String
* */
public static String lastDayOfMoth(Date date, String format){
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.set(Calendar.DAY_OF_MONTH,1);
cal.add(Calendar.MONTH,1);
cal.add(Calendar.DATE, -1);
date = cal.getTime();;
SimpleDateFormat sf = new SimpleDateFormat(format);
return sf.format(date);
}
/**
* ��ȡ�������һ��
*
* @param Date date
* @param String format
* @return String
* */
public static String firstDayOfMoth(Date date, String format){
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(Calendar.DATE, 0);
date = cal.getTime();;
SimpleDateFormat sf = new SimpleDateFormat(format);
return sf.format(date);
}
//****************************************************************
/**
* ת�����ַ������������������Integer��ʽ�ķ���0�������Double��ʽ�ķ���0.0
*
* @param Object
* @return String
*/
public static String toString(Object o) {
if (o == null) {
if (o instanceof Integer) {
return "0";
}
if (o instanceof Double) {
return "0.0";
}
return "";
} else {
return o.toString();
}
} /**
* ����ַ��������Ϊ������ת����null
*
* @param String
* @return String
*/
public static String emptyString2Null(String src) {
if (src != null) {
if ("".equals(src)) {
src = null;
}
}
return src;
}
/**
* ת���ɿ���hql��ʹ�õ��ַ���
* 1,2 תΪ '1','2'
* */
public static String formatIds(String ids){
if(ids!=null&&ids!="")
{
String[] id = ids.split(",");
StringBuffer idsStr = new StringBuffer();
for(String str : id){
idsStr.append("'"+str+"',");
}
return idsStr.toString().substring(0,idsStr.length()-1);
}
else
{
return "";
}
}
/**
* ��ȡ��ǰ����ǰһ��
*
* @param Date date
* @return Date
* */
public static Date getSpecifiedDayBefore(Date date){
Calendar c = Calendar.getInstance();
c.setTime(date);
int day = c.get(Calendar.DATE);
c.set(Calendar.DATE, day-1);
date = c.getTime();
return date;
}
/**
* �Ƚ��������ڵĴ�С
*
* @param data1
* @param data2
*
* @return boolean
*
* @author zhangss 2016-5-18 13:47:16
* */
public boolean bjDate(Date date1, Date date2){
if (date1.getTime() > date2.getTime()) {
return true;
}
return false;
}
}
Java常用工具类之时间转换(注释乱码,全)的更多相关文章
- Java常用工具类之时间转换
import java.text.DecimalFormat; import java.text.ParseException; import java.text.SimpleDateFormat; ...
- JavaEE-实验一 Java常用工具类编程
该博客仅专为我的小伙伴提供参考而附加,没空加上代码具体解析,望各位谅解 1. 使用类String类的分割split 将字符串 “Solutions to selected exercises ca ...
- Java常用工具类---XML工具类、数据验证工具类
package com.jarvis.base.util; import java.io.File;import java.io.FileWriter;import java.io.IOExcepti ...
- [转]Java常用工具类集合
转自:http://blog.csdn.net/justdb/article/details/8653166 数据库连接工具类——仅仅获得连接对象 ConnDB.java package com.ut ...
- 项目经验分享——Java常用工具类集合 转
http://blog.csdn.net/xyw591238/article/details/51678525 写在前面 本文涉及的工具类部分是自己编写,另一部分是在项目里收集的.工具类涉及数 ...
- JAVA常用工具类汇总
一.功能方法目录清单: 1.getString(String sSource)的功能是判断参数是否为空,为空返回"",否则返回其值: 2.getString(int iSource ...
- Java常用工具类---IP工具类、File文件工具类
package com.jarvis.base.util; import java.io.IOException;import java.io.InputStreamReader;import jav ...
- java常用工具类(java技术交流群57388149)
package com.itjh.javaUtil; import java.util.ArrayList; import java.util.List; /** * * String工具类. ...
- Java常用工具类题库
一. 填空题 在Java中每个Java基本类型在java.lang包中都在一个相应的包装类,把基本类型数据转换为对象,其中包装类Integer是___Number__的直接子类. 包装类Inte ...
随机推荐
- [LeetCode] 23. Merge k Sorted Lists ☆☆
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. 解 ...
- CF851 C 暴力
给出n个5维下的点,求点a不与其它任意的b,c重合,向量ab,ac的夹角都为钝角,这样的点个数,并打印它们. 转换二维下的求角度的函数为五维的,而且由于要求角度大于90度,在二维情况下最多有4个点,也 ...
- Python学习笔记(四十一)— 内置模块(10)urllib
摘抄自:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/001432688314 ...
- 【转】 虚拟机Linux不能上网简单有效的解决办法(NAT模式下)
前提条件: a. 确保VMware Network Adapter for VMnet8 处于启用状态,这个是NAT网络模式要用的虚拟网卡.注意这个网卡的IP地址,不需要做手动设置 b. 确保 VMw ...
- js获得页面鼠标位置
1.客户区坐标位置:clientX,clientY 鼠标相对于在当前页面可视范围左上角的位置 2.页面坐标位置:pageX,pageY 鼠标相对于页面左上角的位置(受滑动等影响,例如pageY=cli ...
- A .Gaby And Addition (Gym - 101466A + 字典树)
题目链接:http://codeforces.com/gym/101466/problem/A 题目: 题意: 给你n个数,重定义两个数之间的加法不进位,求这些数中两个数相加的最大值和最小值. 思路: ...
- input复选框checkbox默认样式纯css修改
修改之前的样式 修改之后的样式 html <input type="checkbox" name="btn" id="btn1"&g ...
- python3爬虫.4.下载煎蛋网妹子图
开始我学习爬虫的目标 ----> 煎蛋网 通过设置User-Agent获取网页,发现本该是图片链接的地方被一个js函数代替了 于是全局搜索到该函数 function jandan_load_im ...
- C - Contest Setting Gym - 101982C dp 补题
题目链接:https://vjudge.net/contest/273260#problem/C 学习了一下别人的思路,首先去重,然后离散化. dp数组开二维,每一次更新,状态转移方程,dp[ i ] ...
- xshell5破解版下载
http://www.pc6.com/softview/SoftView_507840.html