| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- package com.chinaitop.depot.utils;
- import java.beans.BeanInfo;
- import java.beans.Introspector;
- import java.beans.PropertyDescriptor;
- import java.io.BufferedInputStream;
- import java.io.InputStream;
- import java.lang.reflect.Method;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.*;
- public class ParameterUtil {
- public static String getSysDateTime(){
- String temp_str="";
- Date dt = new Date();
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- temp_str=sdf.format(dt);
- System.out.println("获取当前时间"+temp_str);
- return temp_str;
- }
-
- public static String getDateYMDHMS(Date date) {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
- str=sdf.format(date);
- System.out.println("获取当前时间"+str);
- return str;
- }
-
- public static String getSysDate(){
- String temp_str="";
- Date dt = new Date();
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- temp_str=sdf.format(dt);
- return temp_str;
- }
- public static Date string2datetime(String dateTime){
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- Date date = null;
- try {
- date = dateFormat.parse(dateTime);
- } catch (ParseException e) {
- e.printStackTrace();
- }
- return date;
- }
- public static Date string2date(String dateTime){
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
- Date date = null;
- try {
- date = dateFormat.parse(dateTime);
- } catch (ParseException e) {
- e.printStackTrace();
- }
- return date;
- }
- public static String date2string(Date date){
- SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
- String str=sdf.format(date);
- return str;
- }
- /**
- * 获取指定时间的时间戳
- * @param datatime
- * @return
- */
- public static String getTimeStamp(String datatime){
- long timeStamp = 0;
- SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- try {
- Date date = format.parse(datatime);
- timeStamp = date.getTime();
- } catch (ParseException e) {
- e.printStackTrace();
- }
- return String.valueOf(timeStamp);
- }
- /*
- * 将时间戳转换为时间
- */
- public static String stampToDate(String s){
- String res;
- SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- long lt = new Long(s);
- Date date = new Date(lt);
- res = simpleDateFormat.format(date);
- return res;
- }
- public static void main(String[] args) {
- System.out.println(stampToDate("1504689208643"));
- System.out.println(getTimeStamp(getSysDateTime()));
- }
- public static String getBHS(String BHS){
- String[] str = BHS.split(",");
- StringBuffer sb = new StringBuffer();
- for(int i=0;i<str.length;i++){
- sb.append("'").append(str[i]).append("'").append(",");
- }
- String s=sb.toString();
- String t=s.substring(0,s.length()-1);
- return t;
- }
- //判断字段值是为空 不为空返回ture
- public static boolean isnotnull(Object name){
- return (null!=name&&!"".equals(name) && !"null".equals(name) && "null" != name);
- }
-
- //判断字段值是为空,为空返回ture
- public static boolean isnull(Object name){
- return (null==name || "".equals(name) || "null".equals(name) || "null" == name);
- }
- //判断字段值是相等 相等返回ture
- public static boolean isequal(Object name,Object value){
- if(name==value||name.equals(value)){
- return true;
- }
- return false;
- }
- /**
- * 判断list和str数组是否全等
- * @param list
- * @param str
- * @return
- */
- public static boolean isAllequal(List<String> list,String[] str){
- boolean isbz = true;
- for(int z=0;z<str.length;z++){
- if(!isequal(list.get(z),str[z])){
- isbz = false;
- break;
- }
- }
- return !isbz || !(str.length == list.size());
- }
- //判断字段值是否在某个集合里 在返回ture
- public static boolean isallequal(Object name,String[] value){
- for(int i=0;i<value.length;i++){
- if(name==value[i]||name.equals(value[i])){
- return true;
- }
- }
- return false;
- }
- /**
- * 从properties得到路径
- * @param filePath
- * @return
- */
- public static Properties readProperties(String filePath) {
- Properties props = new Properties();
- try {
- InputStream in = new BufferedInputStream(ParameterUtil.class.getResourceAsStream(filePath));
- props.load(in);
- } catch (Exception e) {
- e.printStackTrace();
- }
- return props;
- }
- /**
- * 生成32位随机数
- *
- * @return 返回32位随机数
- */
- public static String getCode() {
- UUID uuid = UUID.randomUUID();
- return uuid.toString().replace("-", "");
- }
- /**
- * 实体类转Map共通方法
- *
- * @param bean 实体类
- * @return Map
- * @throws Exception
- */
- public static Map convertBean(Object bean) throws Exception {
- Class type = bean.getClass();
- Map returnMap = new HashMap();
- BeanInfo beanInfo = Introspector.getBeanInfo(type);
- PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
- for (PropertyDescriptor descriptor : propertyDescriptors) {
- String propertyName = descriptor.getName();
- if (!propertyName.equals("class")) {
- Method readMethod = descriptor.getReadMethod();
- Object result = readMethod.invoke(bean);
- if (result != null) {
- returnMap.put(propertyName, result);
- } else {
- returnMap.put(propertyName, "");
- }
- }
- }
- return returnMap;
- }
- }
|