当前位置:网站首页>String type conversion BigDecimal, date type
String type conversion BigDecimal, date type
2022-07-01 22:08:00 【Full stack programmer webmaster】
Hello everyone , I meet you again , I'm your friend, Quan Jun .
String Type conversion BigDecimal type
public static void main(String[] args) { String str1=”2.30″; BigDecimal bd=new BigDecimal(str1); System.out.println(bd); } Java String Type conversion to Date The date type
When inserting a database , Save the current date , Format conversion required
import java.text.SimpleDateFormat;
formatter = new SimpleDateFormat( "yyyy-MM-dd ");
String date = formatter.format(new Date());// Format data , Take the current time result as 2014-10-30
String Format data into Date Format
import java.text.SimpleDateFormat;
formatter = new SimpleDateFormat( "yyyy-MM-dd ");
String s = "2011-07-09 ";
Date date = formatter.parse(s);
Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/147198.html Link to the original text :https://javaforall.cn
边栏推荐
猜你喜欢
九章云极DataCanvas公司蝉联中国机器学习平台市场TOP 3
Application of real estate management based on 3D GIS
PMP证书真的有用吗?
4. 对象映射 - Mapping.Mapstercover
新版图解网络PDF即将发布
名单揭晓 | 2021年度中国杰出知识产权服务团队
二叉树的基本操作
Yan Rong looks at how to formulate a multi cloud strategy in the era of hybrid cloud
leetcode刷题:栈与队列03(有效的括号)
Do you want to make up for the suspended examination in the first half of the year? Including ten examinations for supervision engineers, architects, etc
随机推荐
游览器打开摄像头案例
杰理之、产线装配环节【篇】
中通笔试题:翻转字符串,例如abcd打印出dcba
使用闭包实现点击按钮切换 toggle
基础—io密集型计算和cpu密集型计算
"The silk road is in its youth and looks at Fujian" is in the hot collection of works in the Fujian foreign youth short video competition
LIS (longest ascending subsequence) problem that can be understood [easy to understand]
Test cancellation 1
打出三位数的所有水仙花数「建议收藏」
Business visualization - make your flowchart'run'up
上半年暂停考试要补考?包含监理工程师、建筑师等十项考试
Accelera Systems Initiative是一个独立的非营利组织
leetcode刷题:栈与队列01(用栈实现队列)
js如何获取集合对象中某元素列表
基于LSTM模型实现新闻分类
月入1W+的自媒体达人都会用到的运营工具
php反射型xss,反射型XSS测试及修复
PWN攻防世界cgpwn2
【深度学习】利用深度学习监控女朋友的微信聊天?
leetcode刷题:栈与队列06(前 K 个高频元素)