BaseUtil.java 12.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
package com.skua.modules.quartz.util;

import org.apache.commons.lang3.StringUtils;

import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Calendar;
import java.util.Date;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class BaseUtil {

	public static String dateformat(String date, String format) {
		SimpleDateFormat sformat = new SimpleDateFormat(format);
		Date _date = null;
		try {
			_date = sformat.parse(date);
		} catch (ParseException var5) {
			var5.printStackTrace();
		}
		return sformat.format(_date);
	}
	/**
	 * 保留两位小数方法
	 *
	 * @param pram
	 * @return
	 */
	public static String formatMath(Double pram) {
		DecimalFormat df = new DecimalFormat("######0.00");
		return df.format(pram);
	}

	/***
	 * 根据记录获取:季度开始时间
	 * @param year
	 * @param season
	 * @return
	 */
	public static String getStartTimeBySeason(int year,int season){
		int startMonth = 0;
		int endMonth = 0;
		switch (season) {
			case 1:
				startMonth = 1;
				endMonth = 3;
				break;
			case 2:
				startMonth = 4;
				endMonth = 6;
				break;
			case 3:
				startMonth = 7;
				endMonth = 9;
				break;
			case 4:
				startMonth = 10;
				endMonth = 12;
				break;
			default:
				System.out.println("季度输入无效,请输入1-4之间的数字。");
				return "";
		}
		LocalDate startDate = LocalDate.of(year, startMonth, 1);
		LocalDate endDate = LocalDate.of(year, endMonth, startDate.lengthOfMonth());

		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
		return startDate.format(formatter);
	}

	/***
	 * 根据记录获取:季度结束时间
	 * @param year
	 * @param season
	 * @return
	 */
	public static String getEndTimeBySeason(int year,int season){
		int startMonth = 0;
		int endMonth = 0;
		switch (season) {
			case 1:
				startMonth = 1;
				endMonth = 3;
				break;
			case 2:
				startMonth = 4;
				endMonth = 6;
				break;
			case 3:
				startMonth = 7;
				endMonth = 9;
				break;
			case 4:
				startMonth = 10;
				endMonth = 12;
				break;
			default:
				System.out.println("季度输入无效,请输入1-4之间的数字。");
				return "";
		}

		LocalDate startDate = LocalDate.of(year, startMonth, 1);
		LocalDate endDate = LocalDate.of(year, endMonth, startDate.lengthOfMonth());
		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
		return endDate.format(formatter);
	}

	/***
	 * 分割字符串,然后拼接
	 * @param str 带分隔字符串
	 * @param splitStr  分割符号
	 * @return
	 */
	public static String quoteEach(String  str,String splitStr) {
		if( str != null && str.length() > 0 ){
			String[] items = str.split(splitStr);
			StringBuilder sb = new StringBuilder();
			for (int i = 0; i < items.length; i++) {
				if (i > 0) {
					sb.append(", ");
				}
				sb.append('\'').append(items[i]).append('\'');
			}
			return sb.toString();
		}
		return str;

	}

	/**
	 * 获取当前天0点的时间戳
	 *
	 * @return
	 */
	public static Long timeLong(int hour) {
		Calendar cal = Calendar.getInstance();
		cal.set(Calendar.HOUR_OF_DAY, hour);
		cal.set(Calendar.SECOND, 0);
		cal.set(Calendar.MINUTE, 0);
		cal.set(Calendar.MILLISECOND, 0);
		return cal.getTimeInMillis() / 1000;
	}

	/**
	 * 获取前一天0点的时间戳
	 *
	 * @return
	 */
	public static Long timeLongBefore(int hour) {
		Calendar cal = Calendar.getInstance();
		cal.add(Calendar.DAY_OF_MONTH, -1); // 设置为前一天
		cal.set(Calendar.HOUR_OF_DAY, hour);
		cal.set(Calendar.SECOND, 0);
		cal.set(Calendar.MINUTE, 0);
		cal.set(Calendar.MILLISECOND, 0);
		return cal.getTimeInMillis() / 1000;
	}

	/**
	 * 获取前一小时的时间
	 *
	 * @return
	 */
	public static String timeBeforeHour() {
		Calendar calendar = Calendar.getInstance();
		/* HOUR_OF_DAY 指示一天中的小时 */
		calendar.set(Calendar.HOUR_OF_DAY,
				calendar.get(Calendar.HOUR_OF_DAY) - 1);
		SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH");
		String str = df.format(calendar.getTime());
		// System.out.println("一个小时前的时间:" + str+":00:00");
		// System.out.println("当前的时间:" + df.format(new Date()));
		return str + ":00:00";
	}

	/**
	 * 获取前一天的日期
	 *
	 * @param
	 */
	public static String dateString() {
		Date dNow = new Date(); // 当前时间
		Date dBefore = new Date();
		Calendar calendar = Calendar.getInstance(); // 得到日历
		calendar.setTime(dNow);// 把当前时间赋给日历
		calendar.add(Calendar.DAY_OF_MONTH, -1); // 设置为前一天
		dBefore = calendar.getTime(); // 得到前一天的时间

		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); // 设置时间格式
		String defaultStartDate = sdf.format(dBefore); // 格式化前一天
		// String defaultEndDate = sdf.format(dNow); //格式化当前时间
		return defaultStartDate;
	}

	public static String getCurrentDate() {
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); // 设置时间格式
		String defaultStartDate = sdf.format(new Date()); // 格式化时间
		return defaultStartDate;
	}
	public static String getLastYearDate() {
		Date dNow = new Date(); // 当前时间
		Date dBefore = null;//new Date();
		Calendar calendar = Calendar.getInstance(); // 得到日历
		calendar.setTime(dNow);// 把当前时间赋给日历
		//calendar.add(Calendar.DAY_OF_MONTH, -1); // 设置为前一天
		calendar.add(Calendar.YEAR, -1); // 设置为上一年
		dBefore = calendar.getTime(); // 得到去年的时间

		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); // 设置时间格式
		String defaultStartDate = sdf.format(dBefore); // 格式化时间
		// String defaultEndDate = sdf.format(dNow); //格式化当前时间
		return defaultStartDate;
	}



	/**
	 * 保留两位小数
	 *
	 * @param a
	 * @param b
	 * @return
	 */
	public static Double division(Double a, Double b) {
		if (b == 0d) {
			return 0d;// 如果除数为0,返回0
		}
		BigDecimal bg = new BigDecimal(a / b);
		Double result = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
		return result;
	}

	public static Double division(Double a, Integer b) {
		if (b == 0d) {
			return 0d;// 如果除数为0,返回0
		}
		BigDecimal bg = new BigDecimal(a / b);
		Double result = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
		return result;
	}

	/**
	 * 日期转时间戳
	 *
	 * @param date
	 * @return
	 */
	public static Long dateToTimeStamp(Date date, String format) {
		// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		SimpleDateFormat sdf = new SimpleDateFormat(format);
		String str_date = sdf.format(date);
		Date datetime = null;
		try {
			datetime = sdf.parse(str_date);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		Long time = datetime.getTime() / 1000;
		return time;
	}

	/**
	 * 字符串日期转时间戳
	 *
	 * @param
	 */
	public static Long getlastTime(String str_date) {
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date datetime = null;
		try {
			datetime = sdf.parse(str_date);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		Long time = datetime.getTime() / 1000;
		return time;
	}

	/**
	 * 日期格式化
	 *
	 * @param date
	 * @param format
	 * @return
	 */
	public static String dateTostring(Date date, String format) {

		if (format == null) {
			format = "yyyy-MM-dd";
		}
		SimpleDateFormat sdf = new SimpleDateFormat(format);
		String str = sdf.format(date);
		return str;
	}
/**
 * 时间戳转日期字符串
 * @param seconds
 * @param format
 * @return
 */
	public static String timeStampDate(String seconds, String format) {
		if (seconds == null || seconds.isEmpty() || seconds.equals("null")) {
			return "";
		}
		if (format == null || format.isEmpty()) {
			format = "yyyy-MM-dd HH:mm:ss";
		}
		SimpleDateFormat sdf = new SimpleDateFormat(format);
		return sdf.format(new Date(Long.valueOf(seconds + "000")));
	}
/**
 * 获得前一天的日期
 * @param date
 * @return
 */
	public static Date getNextDay(Date date) {
		Calendar calendar = Calendar.getInstance();
		calendar.setTime(date);
		calendar.add(Calendar.DAY_OF_MONTH, -1);
		date = calendar.getTime();
		return date;
	}

	// 加法
	public static String add(String a, String b) {
		if(StringUtils.isNotEmpty(a) && StringUtils.isNotEmpty(b)){
			return String.valueOf(Double.parseDouble(a) + Double.parseDouble(b));
		}
		return "0";
	}
	/**
	 * 进行加法运算
	 *
	 * @param d1
	 * @param d2
	 * @return
	 */
	public static double add(double d1, double d2) { // 进行加法运算
		BigDecimal b1 = new BigDecimal(d1);
		BigDecimal b2 = new BigDecimal(d2);
		return b1.add(b2).doubleValue();
	}

	/**
	 * 进行减法运算
	 *
	 * @param d1
	 * @param d2
	 * @return
	 */
	public static double sub(double d1, double d2) { // 进行减法运算
		BigDecimal b1 = new BigDecimal(d1);
		BigDecimal b2 = new BigDecimal(d2);
		return b1.subtract(b2).doubleValue();
	}

	/**
	 * 进行乘法运算
	 *
	 * @param d1
	 * @param d2
	 * @return
	 */
	public static double mul(double d1, double d2) { // 进行乘法运算
		BigDecimal b1 = new BigDecimal(d1);
		BigDecimal b2 = new BigDecimal(d2);
		return b1.multiply(b2).doubleValue();
	}

	/**
	 * 进行除法运算
	 *
	 * @param d1
	 * @param d2
	 * @param len
	 * @return
	 */
	public static double div(double d1, double d2, int len) {// 进行除法运算
		if (d2 == 0d) {
			return 0d;// 如果除数为0,返回0
		}
		BigDecimal b1 = new BigDecimal(d1);
		BigDecimal b2 = new BigDecimal(d2);
		return b1.divide(b2, len, BigDecimal.ROUND_HALF_UP).doubleValue();
	}

	/**
	 * 进行四舍五入 操作
	 *
	 * @param d
	 * @param len
	 * @return
	 */
	public static double round(double d, int len) { // 进行四舍五入 操作
		BigDecimal b1 = new BigDecimal(d);
		BigDecimal b2 = new BigDecimal(1);
		// 任何一个数字除以1都是原数字
		// ROUND_HALF_UP是BigDecimal的一个常量,表示进行四舍五入的操作
//		double  result = b1.divide(b2, len, BigDecimal.ROUND_HALF_UP).doubleValue();
		return b1.divide(b2, len, BigDecimal.ROUND_HALF_UP).doubleValue();
	}
	/**
	 * 返回分钟
	 *
	 * @param date
	 *            Date 日期
	 * @return 返回秒钟
	 */
	public static int getMinute(Date date) {
	    Calendar calendar = Calendar.getInstance();
	    calendar.setTime(date);
	    return calendar.get(Calendar.MINUTE);
	}

	/**
	 * 返回秒钟
	 *
	 * @param date
	 *            Date 日期
	 * @return 返回秒钟
	 */
	public static int getSecond(Date date) {
	    Calendar calendar = Calendar.getInstance();
	    calendar.setTime(date);
	    return calendar.get(Calendar.SECOND);
	}



	/**
	 * 过滤html标签
	 * @param htmlStr
	 * @return
	 */
	public synchronized static String delHTMLTag(String htmlStr){
		String regEx_script="<script[^>]*?>[\\s\\S]*?<\\/script>"; //定义script的正则表达式
		String regEx_style="<style[^>]*?>[\\s\\S]*?<\\/style>"; //定义style的正则表达式
		String regEx_html="<[^>]+>"; //定义HTML标签的正则表达式

		Pattern p_script=Pattern.compile(regEx_script,Pattern.CASE_INSENSITIVE);
		Matcher m_script=p_script.matcher(htmlStr);
		htmlStr=m_script.replaceAll(""); //过滤script标签

		Pattern p_style=Pattern.compile(regEx_style,Pattern.CASE_INSENSITIVE);
		Matcher m_style=p_style.matcher(htmlStr);
		htmlStr=m_style.replaceAll(""); //过滤style标签

		Pattern p_html=Pattern.compile(regEx_html,Pattern.CASE_INSENSITIVE);
		Matcher m_html=p_html.matcher(htmlStr);
		htmlStr=m_html.replaceAll(""); //过滤html标签

		return htmlStr.trim(); //返回文本字符串
	}

	public static void main(String[] args) {
//		System.out.println(dateTostring(new Date(), "yyyy-MM-dd HH"));
//		System.out.println(timeStampDate("1471493776", "yyyy-MM-dd HH:mm:ss"));
//		System.out.println(dateTostring(getNextDay(new Date()), "yyyy-MM-dd"));
		// timeBeforeHour();、
//		System.out.println(round(8.7455, 0));
//		System.out.println(timeStampDate(1479312000+"",""));
//		System.out.println(timeLongBefore(0));
//		System.out.println(timeLongBefore(24));
		System.out.println(timeBeforeHour());
		System.out.println(dateToTimeStamp(new Date(), "yyyy-MM-dd HH"));
		System.out.println(BaseUtil.timeStampDate((1479312000-24*3600)+"","yyyy-MM-dd"));
		System.out.println(BaseUtil.getLastYearDate());
		String sql2 = "select count(1) from erp_material_in where confirm_status =2 and audit_status>0 and audit_status<3 and apply_time >= '"+BaseUtil.getLastYearDate()+"' and apply_time<='"+BaseUtil.getCurrentDate()+"' ";
	}

}