java 格式化时间的示例代码

package jkcs;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class jdcs
{

  public static void main(String[] args) throws InterruptedException
  {
     System.setProperty("webdriver.chrome.bin","‪C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");  //设置安装路径,防止系统找不到

     WebDriver driver = new FirefoxDriver();
     driver.get("http://www.baidu.com");
     driver.manage().window().maximize();

     Thread.sleep(5000);

     driver.manage().window().maximize();     //最大化窗口

     driver.navigate().to("https://www.baidu.com"); 

     Thread.sleep(5000);

     DateFormat dateformat1= new SimpleDateFormat("yyyy-MM-dd"); //创建一个data format对象
     Date date1 = new Date(); //利用Date()获取当前时间
     String datex = dateformat1.format(date1);  //格式化时间,并用String对象存储
     System.out.println(datex);  //打印格式化时间到控制台

     DateFormat dateformat2= new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss"); //创建一个data format对象
     Date date2 = new Date(); //利用Date()获取当前时间
     String datey = dateformat2.format(date2);  //格式化时间,并用String对象存储
     System.out.println(datey);  //打印格式化时间到控制台

     DateFormat dateformat3= new SimpleDateFormat("HH-mm-ss"); //创建一个data format对象
     Date date3 = new Date(); //利用Date()获取当前时间
     String dateu = dateformat3.format(date3);  //格式化时间,并用String对象存储
     System.out.println(dateu);  //打印格式化时间到控制台

     Thread.sleep(5000);

     driver.quit();

  }
}

以上就是java 格式化时间的示例代码的详细内容,更多关于Java 格式化时间的资料请关注我们其它相关文章!

(0)

相关推荐

  • 解决SpringMVC 返回Java8 时间JSON数据的格式化问题处理

    有时在Spring MVC中返回JSON格式的response的时候会使用@ResponseBody注解,不过在处理java8中时间的时候会很麻烦,一般我们使用的HTTPMessageConverter是MappingJackson2HttpMessageConverter,它默认返回的时间格式是这种: "startDate" : { "year" : 2010, "month" : "JANUARY", "dayO

  • java获取当前时间并格式化代码实例

    这篇文章主要介绍了java获取当前时间并格式化代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 private static final DateTimeFormatter FORMAT_FOURTEEN = DateTimeFormatter.ofPattern("yyyyMMddHHmmss"); private static final DateTimeFormatter FORMAT_DATE = DateTimeFor

  • Java使用DateTimeFormatter实现格式化时间

    用扫描器获取输入的时间(年月日时分),这个时间的格式是常用的格式,然后格式化这个时间,把格式化的时间输出到控制台,可以在控制台重复输入时间.格式化的时间参考企业微信聊天记录的展示时间.用DateTimeFormatter实现,功能如下: 同年: 不同年: 同月:月日+上午/下午+时分 同年不同月:月日+时分 今天:上午/下午+时分 明天:明天+上午/下午+时分 昨天:昨天+上午/下午+时分 包括今天在内的一周内:星期+上午/下午+时分 首先看一下测试类: package hrkj; import

  • Java日期时间格式化操作DateUtils 的整理

    Java日期时间格式化操作DateUtils 的整理 直接上代码,总结了开发过程中经常用到的日期时间格式化操作! import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.concurrent.TimeUnit; /** * ClassName: DateUtils <br/> * D

  • java 数值类型分秒时间格式化的实例代码

    java 数值类型分秒时间格式化的实例代码 java 实例代码: import java.util.concurrent.TimeUnit; public class DateUtils { private static final String[] UNIT_DESC = new String[]{"天", "小时", "分钟", "秒"}; /** * 格式化持续时间<br/> * 将持续时间,格式化为 xx天

  • 详解Java关于时间格式化的方法

    一般从数据库获取的时间或日期时间格式化为date或者datetime,为了方便前端渲染,API接口返回的时候需要对日期进行格式化转换,通常会用到 SimpleDateFormat 工具处理. SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); String time = dateFormat.format(new Date()); 如果一个DTO类里面有很多关于时间字段需要格式化,就会降低开发效率,产生很多

  • Java使用DateTimeFormatter格式化输入的日期时间

    要求: 用DateTimeFormatter实现: 用扫描器获取输入的时间(年月日时分),这个时间的格式是常用的格式,然后格式化这个时间,把格式化的时间输出到控制台,可以在控制台重复输入时间.格式化的时间参考企业微信聊天记录的展示时间 分析: 1.时间的常用格式为: xxxx-xx-xx xx:xx xxxx/xx/xx xx:xx xxxx.xx.xx xx:xx 等格式 2.微信显式时间格式为: 今天显式: 00:01 - 23:59 ; 昨天显式: 昨天 01:01 ; 前天显式: 周几

  • Java8生成时间方式及格式化时间的方法实例

    LocalDate类 第一种:直接生成当前时间 LocalDate date = LocalDate.now(); System.out.println(date); 结果:2020-08-20 第二种:使用 LocalDate.of 构建时间 LocalDate date = LocalDate.now(); date = LocalDate.of(2020, 9, 20); System.out.println(date); 结果:2020-09-20 第三种:使用 LocalDate.pa

  • Java使用DateFormatter格式化日期时间的方法示例

    本文实例讲述了Java使用DateFormatter格式化日期时间的方法.分享给大家供大家参考,具体如下: Java版本:1.8开始 import java.time.LocalDate; import java.time.LocalDateTime; import java.time.LocalTime; import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; /** * Created by Fra

  • JAVA 格式化日期、时间的方法

    使用 DateFormat 格式化日期.时间 DateFormat 也是一个抽象类,它也提供了如下几个类方法用于获取 DateFormat 对象. getDateInstance():返回一个日期格式器,它格式化后的字符串只有日期,没有时间.该方法可以传入多个参数,用于指定日期样式和 Locale 等参数:如果不指定这些参数,则使用默认参数. getTimeInstance():返回一个时间格式器,它格式化后的字符串只有时间,没有日期.该方法可以传入多个参数,用于指定时间样式和 Locale 等

随机推荐