首页 > 其他分享 >LocalDateTimeDemo 日期 时间 字符串转换

LocalDateTimeDemo 日期 时间 字符串转换

时间:2024-05-24 17:42:14浏览次数:30  
标签:String LocalDateTimeDemo System println 日期 LocalDateTime 字符串 LocalDate out

package demo;

import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

public class LocalDateTimeDemo {

	public static void main(String[] args) {

		LocalDate ld1 = LocalDate.now();
		DateTimeFormatter dtf1 = DateTimeFormatter.ofPattern("yyyy-MM-dd");
		String str1 = ld1.format(dtf1);
		LocalDate ld2 = LocalDate.parse(str1, dtf1);

		System.out.println("Case1");
		System.out.println("LocalDate : " + ld1);
		System.out.println("LocalDate >> String : " + str1);
		System.out.println("String >> LocalDate : " + ld2);
		System.out.println();

		LocalDateTime ldt1 = LocalDateTime.now();
		DateTimeFormatter dtf2 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
		String str2 = ldt1.format(dtf2);
		LocalDateTime ldt2 = LocalDateTime.parse(str2, dtf2);

		System.out.println("Case2");
		System.out.println("LocalDateTime : " + ldt1);
		System.out.println("LocalDateTime >> String : " + str2);
		System.out.println("String >> LocalDateTime : " + ldt2);
		System.out.println();

	}

}

标签:String,LocalDateTimeDemo,System,println,日期,LocalDateTime,字符串,LocalDate,out
From: https://www.cnblogs.com/renguanyu/p/18211416

相关文章

  • python对字符串的操作
    #coding=utf-8"""对字符串的操作"""#1、strip()去除字符串中首尾存在的0或空格string="000wyl000"print(string.strip('0'))#执行结果:wyl#2、find()和index()查找字符串中指定内容,如果找到返回其索引值,如果未找到,则返回-1string="123wyl000"print(string.fin......
  • 原始配置字符串进行解析并转换为字典
    varconfigPairs=mqttConfig.Split(';').Select(pair=>pair.Split('=')).Where(parts=>parts.Length==2).ToDictionary(parts=>parts[0].Trim(),parts=&g......
  • 字符串——最小表示法
    字符串——最小表示法定义在字符串\(S\)的所有,与其循环同构的字符串\(T\)中,字典序最小的一个。循环同构:字符串\(S\)循环移位,所有可以得到的字符串\(T\)与\(S\)循环同构。暴力枚举与\(S\)循环同构的每一个字符串,比较其字典序。枚举复杂度\(\mathcalO(n)\),字典......
  • 判断日期是否在7天之内
    判断日期是否在7天之内Datedate=newDate();//获取当前时间Dates00=(Date)pageData.get("addTime");//获取需要比较的目标时间Calendarcalendar=Calendar.getInstanc......
  • 逗号分开的字符串,统计个数从高到底排序
    usesWinapi.Windows,Winapi.Messages,System.SysUtils,System.Variants,System.Classes,Vcl.Graphics,System.RegularExpressions, functionCompareStrings(List:TStringList;Index1,Index2:Integer):Integer;beginResult:=StrToInt(List.ValueF......
  • 总结全网C#取随机数方法(整型,浮点型,字符串)
    原文链接:https://blog.csdn.net/m0_65636467/article/details/127770112C#取随机数(Random篇)一、整数随机数//10以内的随机整数Randomrd=newRandom();intn=ran.Next(10);//1-100的随机整数intp=rd.Next(1,100);//大于等于1小于100的整数intNext(intmi......
  • 力扣-1209. 删除字符串中的所有相邻重复项 II
    1.题目题目地址(1209.删除字符串中的所有相邻重复项II-力扣(LeetCode))https://leetcode.cn/problems/remove-all-adjacent-duplicates-in-string-ii/题目描述给你一个字符串 s,「k倍重复项删除操作」将会从s 中选择 k 个相邻且相等的字母,并删除它们,使被删去的字符串的......
  • 使用Chrome 开发者工具提取对应的字符串
    最近在查看一个API的数据,效果很好,但是里面只有一部分我想要的内容 如果是简单一点的可以直接获取如下比如我想要提取返回的代码中关键的字符串:"video":"这里的内容"//定义一个正则表达式来匹配'"video":"链接"'格式的字符串varregex=/"video":\s*"([^"]+)"/gi;......
  • layui laydate日期时间范围,时间默认设定为23:59:59
    在Layui中,如果你想设置日期时间选择器(datetime)的默认结束时间为当天的23:59:59,你可以使用如下代码(红色部分):laydate.render({elem:'#test10',type:'datetime',range:true,max:'{:date("Y-......
  • Mybaits使用SQL拦截器实现字符串修剪
    概述一般情况下,保存到数据库中的字符串类型的数据,我们一般都不希望它前后带着空格,类似于"哈哈哈"。在业务中,如果每一个保存到数据库中的SQL都去对字符串参数进行trim的操作,这是很繁琐的,且容易漏掉。解决方案使用Mybatis的拦截器,拦截每一个SQL,针对SQL中的字符串参数进行tr......