- Java 9 Programming Blueprints
- Jason Lee
- 120字
- 2021-07-02 18:56:28
Date Calculator
With the release of Java 8, Oracle integrated a new library based on a redesign of Joda Time, more or less, into the JDK. Officially known as JSR 310, this new library fixed a longstanding complaint with the JDK--the official date libraries were inadequate and hard to use. In this project, we'll build a simple command-line date calculator that will take a date and, for example, add an arbitrary amount of time to it. Consider the following piece of code for example:
$ datecalc "2016-07-04 + 2 weeks" 2016-07-18 $ datecalc "2016-07-04 + 35 days" 2016-08-08 $ datecalc "12:00CST to PST" 10:00PST
This project will cover the following:
- Java 8 Date/Time APIs
- Regular expressions
- Java command-line libraries
推薦閱讀
- Data Visualization with D3 4.x Cookbook(Second Edition)
- 架構不再難(全5冊)
- 基于Java技術的Web應用開發
- Android NDK Beginner’s Guide
- 區塊鏈:以太坊DApp開發實戰
- Learning Laravel 4 Application Development
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- HTML5從入門到精通 (第2版)
- Mastering ROS for Robotics Programming
- CRYENGINE Game Development Blueprints
- Java并發編程:核心方法與框架
- Python期貨量化交易實戰
- MySQL 8從零開始學(視頻教學版)
- Tableau Dashboard Cookbook
- Qt 5.12實戰