Java日期工具类DateUtils实例详解

2025-05-29 0 22

在项目开发中,日期是我们必不可少的的一部分,本文将总结代码开发中的关于日期常用的一些方法,以方便自己后期使用。下面直接上菜了:

?

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

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547
package com.example.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

*

*/

public class DateUtils {

/**

* 常用变量

*/

public static final String DATE_FORMAT_FULL = "yyyy-MM-dd HH:mm:ss";

public static final String DATE_FORMAT_YMD = "yyyy-MM-dd";

public static final String DATE_FORMAT_HMS = "HH:mm:ss";

public static final String DATE_FORMAT_HM = "HH:mm";

public static final String DATE_FORMAT_YMDHM = "yyyy-MM-dd HH:mm";

public static final String DATE_FORMAT_YMDHMS = "yyyyMMddHHmmss";

public static final long ONE_DAY_MILLS = 3600000 * 24;

public static final int WEEK_DAYS = 7;

private static final int dateLength = DATE_FORMAT_YMDHM.length();

/**

* 日期转换为制定格式字符串

*

* @param time

* @param format

* @return

*/

public static String formatDateToString(Date time, String format) {

SimpleDateFormat sdf = new SimpleDateFormat(format);

return sdf.format(time);

}

/**

* 字符串转换为制定格式日期

* (注意:当你输入的日期是2014-12-21 12:12,format对应的应为yyyy-MM-dd HH:mm

* 否则异常抛出)

* @param date

* @param format

* @return

* @throws ParseException

* @

*/

public static Date formatStringToDate(String date, String format) {

SimpleDateFormat sdf = new SimpleDateFormat(format);

try {

return sdf.parse(date);

} catch (ParseException ex) {

ex.printStackTrace();

throw new RuntimeException(ex.toString());

}

}

/**

* 判断一个日期是否属于两个时段内

* @param time

* @param timeRange

* @return

*/

public static boolean isTimeInRange(Date time, Date[] timeRange) {

return (!time.before(timeRange[0]) && !time.after(timeRange[1]));

}

/**

* 从完整的时间截取精确到分的时间

*

* @param fullDateStr

* @return

*/

public static String getDateToMinute(String fullDateStr) {

return fullDateStr == null ? null

: (fullDateStr.length() >= dateLength ? fullDateStr.substring(

0, dateLength) : fullDateStr);

}

/**

* 返回指定年度的所有周。List中包含的是String[2]对象 string[0]本周的开始日期,string[1]是本周的结束日期。

* 日期的格式为YYYY-MM-DD 每年的第一个周,必须包含星期一且是完整的七天。

* 例如:2009年的第一个周开始日期为2009-01-05,结束日期为2009-01-11。 星期一在哪一年,那么包含这个星期的周就是哪一年的周。

* 例如:2008-12-29是星期一,2009-01-04是星期日,哪么这个周就是2008年度的最后一个周。

*

* @param year

* 格式 YYYY ,必须大于1900年度 小于9999年

* @return @

*/

public static List<String[]> getWeeksByYear(final int year) {

int weeks = getWeekNumOfYear(year);

List<String[]> result = new ArrayList<String[]>(weeks);

int start = 1;

int end = 7;

for (int i = 1; i <= weeks; i++) {

String[] tempWeek = new String[2];

tempWeek[0] = getDateForDayOfWeek(year, i, start);

tempWeek[1] = getDateForDayOfWeek(year, i, end);

result.add(tempWeek);

}

return result;

}

/**

* 计算指定年、周的上一年、周

*

* @param year

* @param week

* @return @

*/

public static int[] getLastYearWeek(int year, int week) {

if (week <= 0) {

throw new IllegalArgumentException("周序号不能小于1!!");

}

int[] result = { week, year };

if (week == 1) {

// 上一年

result[1] -= 1;

// 最后一周

result[0] = getWeekNumOfYear(result[1]);

} else {

result[0] -= 1;

}

return result;

}

/**

* 下一个[周,年]

*

* @param year

* @param week

* @return @

*/

public static int[] getNextYearWeek(int year, int week) {

if (week <= 0) {

throw new IllegalArgumentException("周序号不能小于1!!");

}

int[] result = { week, year };

int weeks = getWeekNumOfYear(year);

if (week == weeks) {

// 下一年

result[1] += 1;

// 第一周

result[0] = 1;

} else {

result[0] += 1;

}

return result;

}

/**

* 计算指定年度共有多少个周。(从周一开始)

*

* @param year

* @return @

*/

public static int getWeekNumOfYear(final int year) {

return getWeekNumOfYear(year, Calendar.MONDAY);

}

/**

* 计算指定年度共有多少个周。

*

* @param year

* yyyy

* @return @

*/

public static int getWeekNumOfYear(final int year, int firstDayOfWeek) {

// 每年至少有52个周 ,最多有53个周。

int minWeeks = 52;

int maxWeeks = 53;

int result = minWeeks;

int sIndex = 4;

String date = getDateForDayOfWeek(year, maxWeeks, firstDayOfWeek);

// 判断年度是否相符,如果相符说明有53个周。

if (date.substring(0, sIndex).equals(year)) {

result = maxWeeks;

}

return result;

}

public static int getWeeksOfWeekYear(final int year) {

Calendar cal = Calendar.getInstance();

cal.setFirstDayOfWeek(Calendar.MONDAY);

cal.setMinimalDaysInFirstWeek(WEEK_DAYS);

cal.set(Calendar.YEAR, year);

return cal.getWeeksInWeekYear();

}

/**

* 获取指定年份的第几周的第几天对应的日期yyyy-MM-dd(从周一开始)

*

* @param year

* @param weekOfYear

* @param dayOfWeek

* @return yyyy-MM-dd 格式的日期 @

*/

public static String getDateForDayOfWeek(int year, int weekOfYear,

int dayOfWeek) {

return getDateForDayOfWeek(year, weekOfYear, dayOfWeek, Calendar.MONDAY);

}

/**

* 获取指定年份的第几周的第几天对应的日期yyyy-MM-dd,指定周几算一周的第一天(firstDayOfWeek)

*

* @param year

* @param weekOfYear

* @param dayOfWeek

* @param firstDayOfWeek

* 指定周几算一周的第一天

* @return yyyy-MM-dd 格式的日期

*/

public static String getDateForDayOfWeek(int year, int weekOfYear,

int dayOfWeek, int firstDayOfWeek) {

Calendar cal = Calendar.getInstance();

cal.setFirstDayOfWeek(firstDayOfWeek);

cal.set(Calendar.DAY_OF_WEEK, dayOfWeek);

cal.setMinimalDaysInFirstWeek(WEEK_DAYS);

cal.set(Calendar.YEAR, year);

cal.set(Calendar.WEEK_OF_YEAR, weekOfYear);

return formatDateToString(cal.getTime(), DATE_FORMAT_YMD);

}

/**

* 获取指定日期星期几

*

* @param datetime

* @throws ParseException

* @

*/

public static int getWeekOfDate(String datetime) throws ParseException {

Calendar cal = Calendar.getInstance();

cal.setFirstDayOfWeek(Calendar.MONDAY);

cal.setMinimalDaysInFirstWeek(WEEK_DAYS);

Date date = formatStringToDate(datetime, DATE_FORMAT_YMD);

cal.setTime(date);

return cal.get(Calendar.DAY_OF_WEEK);

}

/**

* 计算某年某周内的所有日期(从周一开始 为每周的第一天)

*

* @param yearNum

* @param weekNum

* @return @

*/

public static List<String> getWeekDays(int yearNum, int weekNum) {

return getWeekDays(yearNum, weekNum, Calendar.MONDAY);

}

/**

* 计算某年某周内的所有日期(七天)

*

* @param yearNum

* @param weekNum

* @return yyyy-MM-dd 格式的日期列表

*/

public static List<String> getWeekDays(int year, int weekOfYear,

int firstDayOfWeek) {

List<String> dates = new ArrayList<String>();

int dayOfWeek = firstDayOfWeek;

for (int i = 0; i < WEEK_DAYS; i++) {

dates.add(getDateForDayOfWeek(year, weekOfYear, dayOfWeek++,

firstDayOfWeek));

}

return dates;

}

/**

* 获取目标日期的上周、或本周、或下周的年、周信息

*

* @param queryDate

* 传入的时间

* @param weekOffset

* -1:上周 0:本周 1:下周

* @param firstDayOfWeek

* 每周以第几天为首日

* @return

* @throws ParseException

*/

public static int[] getWeekAndYear(String queryDate, int weekOffset,

int firstDayOfWeek) throws ParseException {

Date date = formatStringToDate(queryDate, DATE_FORMAT_YMD);

Calendar calendar = Calendar.getInstance();

calendar.setTime(date);

calendar.setFirstDayOfWeek(firstDayOfWeek);

calendar.setMinimalDaysInFirstWeek(WEEK_DAYS);

int year = calendar.getWeekYear();

int week = calendar.get(Calendar.WEEK_OF_YEAR);

int[] result = { week, year };

switch (weekOffset) {

case 1:

result = getNextYearWeek(year, week);

break;

case -1:

result = getLastYearWeek(year, week);

break;

default:

break;

}

return result;

}

/**

* 计算个两日期的天数

*

* @param startDate

* 开始日期字串

* @param endDate

* 结束日期字串

* @return

* @throws ParseException

*/

public static int getDaysBetween(String startDate, String endDate)

throws ParseException {

int dayGap = 0;

if (startDate != null && startDate.length() > 0 && endDate != null

&& endDate.length() > 0) {

Date end = formatStringToDate(endDate, DATE_FORMAT_YMD);

Date start = formatStringToDate(startDate, DATE_FORMAT_YMD);

dayGap = getDaysBetween(start, end);

}

return dayGap;

}

private static int getDaysBetween(Date startDate, Date endDate) {

return (int) ((endDate.getTime() - startDate.getTime()) / ONE_DAY_MILLS);

}

/**

* 计算两个日期之间的天数差

* @param startDate

* @param endDate

* @return

*/

public static int getDaysGapOfDates(Date startDate, Date endDate) {

int date = 0;

if (startDate != null && endDate != null) {

date = getDaysBetween(startDate, endDate);

}

return date;

}

/**

* 计算两个日期之间的年份差距

*

* @param firstDate

* @param secondDate

* @return

*/

public static int getYearGapOfDates(Date firstDate, Date secondDate) {

if (firstDate == null || secondDate == null) {

return 0;

}

Calendar helpCalendar = Calendar.getInstance();

helpCalendar.setTime(firstDate);

int firstYear = helpCalendar.get(Calendar.YEAR);

helpCalendar.setTime(secondDate);

int secondYear = helpCalendar.get(Calendar.YEAR);

return secondYear - firstYear;

}

/**

* 计算两个日期之间的月份差距

*

* @param firstDate

* @param secondDate

* @return

*/

public static int getMonthGapOfDates(Date firstDate, Date secondDate) {

if (firstDate == null || secondDate == null) {

return 0;

}

return (int) ((secondDate.getTime() - firstDate.getTime())

/ ONE_DAY_MILLS / 30);

}

/**

* 计算是否包含当前日期

*

* @param datys

* @return

*/

public static boolean isContainCurrent(List<String> dates) {

boolean flag = false;

SimpleDateFormat fmt = new SimpleDateFormat(DATE_FORMAT_YMD);

Date date = new Date();

String dateStr = fmt.format(date);

for (int i = 0; i < dates.size(); i++) {

if (dateStr.equals(dates.get(i))) {

flag = true;

}

}

return flag;

}

/**

* 从date开始计算time天后的日期

*

* @param date

* @param time

* @return

* @throws ParseException

*/

public static String getCalculateDateToString(String startDate, int time)

throws ParseException {

String resultDate = null;

if (startDate != null && startDate.length() > 0) {

Date date = formatStringToDate(startDate, DATE_FORMAT_YMD);

Calendar c = Calendar.getInstance();

c.setTime(date);

c.set(Calendar.DAY_OF_YEAR, time);

date = c.getTime();

resultDate = formatDateToString(date, DATE_FORMAT_YMD);

}

return resultDate;

}

/**

* 获取从某日期开始计算,指定的日期所在该年的第几周

*

* @param date

* @param admitDate

* @return

* @throws ParseException

* @

*/

public static int[] getYearAndWeeks(String date, String admitDate)

throws ParseException {

Calendar c = Calendar.getInstance();

c.setTime(formatStringToDate(admitDate, DATE_FORMAT_YMD));

int time = c.get(Calendar.DAY_OF_WEEK);

return getWeekAndYear(date, 0, time);

}

/**

* 获取指定日期refDate,前或后一周的所有日期

*

* @param refDate

* 参考日期

* @param weekOffset

* -1:上周 0:本周 1:下周

* @param startDate

* 哪天算一周的第一天

* @return yyyy-MM-dd 格式的日期

* @throws ParseException

* @

*/

public static List<String> getWeekDaysAroundDate(String refDate,

int weekOffset, String startDate) throws ParseException {

// 以startDate为一周的第一天

Calendar c = Calendar.getInstance();

c.setTime(formatStringToDate(startDate, DATE_FORMAT_YMD));

int firstDayOfWeek = c.get(Calendar.DAY_OF_WEEK);

// 获取相应周

int[] weekAndYear = getWeekAndYear(refDate, weekOffset, firstDayOfWeek);

// 获取相应周的所有日期

return getWeekDays(weekAndYear[1], weekAndYear[0], firstDayOfWeek);

}

/**

* 根据时间点获取时间区间

*

* @param hours

* @return

*/

public static List<String[]> getTimePointsByHour(int[] hours) {

List<String[]> hourPoints = new ArrayList<String[]>();

String sbStart = ":00:00";

String sbEnd = ":59:59";

for (int i = 0; i < hours.length; i++) {

String[] times = new String[2];

times[0] = hours[i] + sbStart;

times[1] = (hours[(i + 1 + hours.length) % hours.length] - 1)

+ sbEnd;

hourPoints.add(times);

}

return hourPoints;

}

/**

*

* 根据指定的日期,增加或者减少天数

*

* @param date

* @param amount

* @return

*/

public static Date addDays(Date date, int amount) {

return add(date, Calendar.DAY_OF_MONTH, amount);

}

/**

* 根据指定的日期,类型,增加或减少数量

*

* @param date

* @param calendarField

* @param amount

* @return

*/

public static Date add(Date date, int calendarField, int amount) {

if (date == null) {

throw new IllegalArgumentException("The date must not be null");

}

Calendar c = Calendar.getInstance();

c.setTime(date);

c.add(calendarField, amount);

return c.getTime();

}

/**

* 获取当前日期的最大日期 时间2014-12-21 23:59:59

* @return

*/

public static Date getCurDateWithMaxTime() {

Calendar c = Calendar.getInstance();

c.set(Calendar.HOUR_OF_DAY, 23);

c.set(Calendar.MINUTE, 59);

c.set(Calendar.SECOND, 59);

return c.getTime();

}

/**

* 获取当前日期的最小日期时间 2014-12-21 00:00:00

* @return

*/

public static Date getCurDateWithMinTime() {

Calendar c = Calendar.getInstance();

c.set(Calendar.HOUR_OF_DAY, 0);

c.set(Calendar.MINUTE, 0);

c.set(Calendar.SECOND, 0);

c.set(Calendar.MILLISECOND, 0);

return c.getTime();

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。

原文链接:http://blog.csdn.net/a123demi/article/details/42100333

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 Java日期工具类DateUtils实例详解 https://www.kuaiidc.com/113932.html

相关文章

发表评论
暂无评论