Java中字符串格式化知识和高级技巧,举例说明并加上注释_java格式化字符串-程序员宅基地

技术标签: Java  python  笔记  java  开发语言  

目录

1、使用占位符进行基本字符串格式化:

2、控制浮点数的精度和小数位数:

3、格式化日期和时间:

4、对齐文本:

5、使用千位分隔符格式化数字:

6、格式化货币:

7、格式化百分比:

8、基本字符串格式化:

9、控制浮点数的精度和小数位数:

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、格式化数字为不同进制:


1、使用占位符进行基本字符串格式化:

String name = "Alice";
int age = 25;
String message = String.format("My name is %s and I am %d years old.", name, age);

注释:使用%s代表字符串,%d代表整数,可以将变量的值插入到字符串中。

2、控制浮点数的精度和小数位数:

double num = 3.141592653589793;
String message = String.format("The value of pi is approximately %.2f.", num);

注释:使用%.2f将浮点数格式化为小数点后两位。

3、格式化日期和时间:

import java.time.LocalDateTime;
String date = LocalDateTime.now().toString();
String message = String.format("Today's date and time is %s.", date);

注释:使用LocalDateTime类获取当前日期和时间,并使用%s将其格式化为字符串。

4、对齐文本:

String name = "Alice";
int age = 25;
String message = String.format("Name: %-10s, Age: %d", name, age);

注释:使用%-10s可以左对齐字符串,并使用%d格式化整数。

5、使用千位分隔符格式化数字:

int num = 1000000;
String message = String.format("The population is %,d.", num);

注释:使用%,d将数字格式化为带有千位分隔符的形式。

6、格式化货币:

import java.util.Currency;
import java.util.Locale;
double amount = 1000.50;
Currency currency = Currency.getInstance(Locale.US);
String message = String.format("The price is %s%.2f.", currency.getSymbol(), amount);

注释:使用Currency类获取货币符号,并将浮点数格式化为货币形式。

7、格式化百分比:

double percentage = 0.75;
String message = String.format("The discount is %.2f%%.", percentage * 100);

注释:使用%.2f%%将浮点数格式化为百分比形式。

8、基本字符串格式化:

String name = "Alice";
int age = 25;
String message = String.format("My name is %s and I am %d years old.", name, age);
System.out.println(message);

注释:使用%s代表字符串,%d代表整数,将变量的值插入到字符串中。运行结果:My name is Alice and I am 25 years old.

9、控制浮点数的精度和小数位数:

double num = 3.141592653589793;
String message = String.format("The value of pi is approximately %.2f.", num);
System.out.println(message);

注释:使用%.2f将浮点数格式化为小数点后两位。运行结果:The value of pi is approximately 3.14.

10、格式化日期和时间:

11、使用占位符填充字符串:

String name = "Alice";
String message = String.format("Hello, %20s!", name);
System.out.println(message);

注释:使用%20s将字符串格式化为长度为20的字段,并在右侧填充空格。运行结果:Hello, Alice!

12、对齐文本:

String name = "Alice";
String message = String.format("|%10s|", name);
System.out.println(message);

注释:使用%10s将字符串格式化为长度为10的字段,并在左侧填充空格。运行结果:| Alice|

13、格式化整数:

int number = 42;
String message = String.format("The answer to life, the universe, and everything is %d.", number);
System.out.println(message);

注释:使用%d将整数格式化为字符串。运行结果:The answer to life, the universe, and everything is 42.

14、格式化浮点数:

double number = 3.141592653589793;
String message = String.format("The value of pi is approximately %.4f.", number);
System.out.println(message);

注释:使用%.4f将浮点数格式化为小数点后四位。运行结果:The value of pi is approximately 3.1416.

15、使用逗号分隔数字:

int number = 1000000;
String message = String.format("One million is written as %,d.", number);
System.out.println(message);

注释:使用%,d将数字格式化为带有千位分隔符的字符串。运行结果:One million is written as 1,000,000.

16、格式化日期和时间:

import java.time.LocalDateTime;
String dateTime = LocalDateTime.now().toString();
String message = String.format("Current date and time: %tF %tT", dateTime, dateTime);
System.out.println(message);

注释:使用%tF和%tT将日期和时间格式化为ISO 8601格式(例如:2022-01-01 12:34:56)。运行结果:Current date and time: 2022-01-01 12:34:56

17、格式化百分比:

double percentage = 0.75;
String message = String.format("The discount is %.2f%%.", percentage * 100);
System.out.println(message);

注释:使用%.2f%%将小数转换为百分比,并保留两位小数。运行结果:The discount is 75.00%.

18、格式化布尔值:

boolean isTrue = true;
String message = String.format("The value of the boolean is %b.", isTrue);
System.out.println(message);

注释:使用%b将布尔值格式化为字符串。运行结果:The value of the boolean is true.

19、嵌套格式化:

int number = 42;
String message = String.format("The answer to life, the universe, and everything is %d, which is %.2f%% of %s.", number, (double)number / 100, "100");
System.out.println(message);

注释:在格式字符串中嵌套使用多个占位符。运行结果:The answer to life, the universe, and everything is 42, which is 0.42% of 100.

20、格式化货币金额:

import java.text.NumberFormat;
double amount = 1234.56;
NumberFormat currencyFormatter = NumberFormat.getCurrencyInstance();
String message = String.format("The total amount is %s.", currencyFormatter.format(amount));
System.out.println(message);

注释:使用NumberFormat类和getCurrencyInstance()方法将数字格式化为货币金额。运行结果:The total amount is $1,234.56.

21、自定义格式化选项:

String name = "Alice";
int age = 25;
String message = String.format("Hello, %s! You are %02d years old.", name, age);
System.out.println(message);

注释:使用%02d将整数格式化为两位数,并在前面补零。运行结果:Hello, Alice! You are 25 years old.

22、格式化多个对象:

int apples = 5;
int oranges = 3;
String message = String.format("I have %d apples and %d oranges.", apples, oranges);
System.out.println(message);

注释:在格式字符串中使用多个占位符,并按顺序提供相应的参数。运行结果:I have 5 apples and 3 oranges.

23、格式化日期为指定格式:

import java.time.LocalDate;
String date = LocalDate.now().toString();
String message = String.format("Today's date is %s.", date);
System.out.println(message);

注释:使用%s将日期格式化为字符串。运行结果:Today's date is 2022-01-01.

24、对齐文本:

String name = "John";
String message = String.format("Hello, %10s!", name);
System.out.println(message);

注释:使用%10s将字符串右对齐,并在左侧填充空格(如果字符串不足10个字符)。运行结果:Hello, John!

25、为正负数添加符号:

int positiveNumber = 42;
int negativeNumber = -42;
String message = String.format("Positive: %+d, Negative: %+d", positiveNumber, negativeNumber);
System.out.println(message);

注释:使用%+d将正数和负数都显示符号(+/-)。运行结果:Positive: +42, Negative: -42

26、格式化科学计数法:

double number = 1.23456789E10;
String message = String.format("Scientific notation: %.2e", number);
System.out.println(message);

注释:使用%.2e将数字格式化为科学计数法,并指定小数点后的位数。运行结果:Scientific notation: 1.23e+10

27、格式化十六进制数:

int number = 255;
String message = String.format("Hexadecimal: %x", number);
System.out.println(message);

注释:使用%x将整数格式化为十六进制。运行结果:Hexadecimal: ff

28、格式化百分比:

double percentage = 0.75;
String message = String.format("Percentage: %.2f%%", percentage * 100);
System.out.println(message);

注释:使用%.2f将小数格式化为百分比,并乘以100转换为百分数。运行结果:Percentage: 75.00%

29、格式化日期和时间:

import java.time.LocalDateTime;
LocalDateTime dateTime = LocalDateTime.now();
String message = String.format("Current date and time: %tF %tT", dateTime, dateTime);
System.out.println(message);

注释:使用%tF和%tT将日期和时间格式化为指定的格式。运行结果:Current date and time: 2022-01-01 12:34:56

30、格式化左对齐:

String name = "Alice";
String message = String.format("Hello, %-10s!", name);
System.out.println(message);

注释:使用%-10s将字符串左对齐,并在右侧填充空格(如果字符串不足10个字符)。运行结果:Hello, Alice !

31、格式化货币金额:

import java.text.NumberFormat;
double amount = 12345.67;
String message = String.format("Amount: %s", NumberFormat.getCurrencyInstance().format(amount));
System.out.println(message);

注释:使用NumberFormat类的getCurrencyInstance()方法获取格式化货币的实例,并将金额格式化为货币格式。运行结果:Amount: $12,345.67

32、根据不同语言环境格式化数字:

import java.text.NumberFormat;
double amount = 12345.67;
NumberFormat numberFormat = NumberFormat.getNumberInstance(Locale.FRENCH);
String message = String.format("Amount: %s", numberFormat.format(amount));
System.out.println(message);

注释:使用NumberFormat类的getNumberInstance()方法获取特定语言环境的实例,并将数字格式化为该语言环境的格式。运行结果(在法语环境下):Amount: 12 345,67

33、格式化日期为自定义格式:

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
LocalDate date = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");
String message = String.format("Custom date format: %s", date.format(formatter));
System.out.println(message);

注释:使用DateTimeFormatter类的ofPattern()方法创建自定义日期格式的实例,并将日期格式化为该自定义格式。运行结果:Custom date format: 01/01/2022

34、格式化时间为自定义格式:

import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
LocalTime time = LocalTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss");
String message = String.format("Custom time format: %s", time.format(formatter));
System.out.println(message);

注释:使用DateTimeFormatter类的ofPattern()方法创建自定义时间格式的实例,并将时间格式化为该自定义格式。运行结果:Custom time format: 12:34:56

35、格式化科学计数法:

double number = 12345.6789;
String message = String.format("Scientific notation: %.2e", number);
System.out.println(message);

注释:使用%.2e将数字格式化为科学计数法,并指定小数点后的位数。运行结果:Scientific notation: 1.23e+04

36、格式化日期和时间的时区:

import java.time.ZonedDateTime;
ZonedDateTime dateTime = ZonedDateTime.now();
String message = String.format("Date and time with timezone: %tF %tT %tz", dateTime, dateTime, dateTime);
System.out.println(message);

注释:使用%tF、%tT和%tz将日期、时间和时区信息格式化为指定的格式。运行结果:Date and time with timezone: 2022-01-01 12:34:56 +0800

37、格式化数字为不同进制:

int number = 255;
String message = String.format("Binary: %s, Octal: %s", Integer.toBinaryString(number), Integer.toOctalString(number));
System.out.println(message);

注释:使用Integer类的toBinaryString()和toOctalString()方法将数字格式化为二进制和八进制。运行结果:Binary: 11111111, Octal: 377

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/zh6526157/article/details/132480138

智能推荐

金融语言模型:FinGPT-程序员宅基地

文章浏览阅读3k次。FinGPT是一个开源的金融语言模型(LLMs),由FinNLP项目提供。这个项目让对金融领域的自然语言处理(NLP)感兴趣的人们有了一个可以自由尝试的平台,并提供了一个与专有模型相比更容易获取的金融数据。FinGPT使用RLHF方法进行个性化的金融语言建模,这与BloombergGPT的方法不同。它采用了一种轻量级的低秩适应技术,使得微调模型变得更简单和经济。FinGPT项目为金融领域的自然语言处理开创了新的可能,它的开源性质能推动这个领域的进步和创新。_fingpt

java.util.concurrent.atomic原子操作类-程序员宅基地

文章浏览阅读833次。java.util.concurrent.atomic原子操作类java原子操作类1.原子操作类2.AtomicInteger的基本方法2.1 创建一个不传值的,默认值为02.2 获取和赋值2.3 compareAndSet方法2.4 getAndAdd、AddAndGet、getAndDecrement和DecrementAndGet3.多线程测试4.AtomicReference详解5.CAS可能存在ABA的问题5.1 AtomicStampedReference原理5.2 AtomicMarkable_java.util.concurrent.atomic

C语言--第0次作业-程序员宅基地

文章浏览阅读51次。1.你认为大学的学习生活、同学关系、师生应该是怎样?请一个个展开描写。学习生活:自由但并不散漫大学的学习生活与以往的学习生活有很大的差别。大学的学习生活要自由得多,没有老师或是班干部紧跟在我身后提醒我,督促我。这有好处也有坏处,好处是我能有更多的时间安排我自己的学习方向,能有更多时间思考我的学习目的。坏处则是容易滋生懒惰的心理,大学的学习生活中,最为可怕的就是被懒惰击败。我们可以..._编程比赛对于学生在计算机科学专业中形成良好的氛围起着非常重要的作用。你知道,

html 键盘按键与按钮功能关联_html按键代码是指在网页中使用特定的键盘按键来实现一些交互功能-程序员宅基地

文章浏览阅读6.5k次。键盘中每个按键都对应一个数值,通过匹配进行功能函数得划分,主要使用得是键盘按键事件,onkeydown;案例如下:<!DOCTYPE html><html ><head> <title></title></head><script type="text/javascript"&gt_html按键代码是指在网页中使用特定的键盘按键来实现一些交互功能

Layui多选框提交时只能获取到最后一个选中的值的解决办法,以及thymeleaf中多选框回显的写法_thymeleaf 多选框-程序员宅基地

文章浏览阅读606次。后来我发现在checkbox添加lay-filter="demo-checkbox-filter"然后每次选中触发方法时获取多选框所有值的确是没办法获取到,并不是网上的方法不对,最后在监听提交按钮的方法上获取多选框的值再赋值给表单,最后提交给后台才拿到。以上是我项目中用到的实例 ,当我提交时后台只能拿到最后选中的一个值,网上找了很多方法,但是我测试时都是无效的,_thymeleaf 多选框

稀疏编码的数学基础与理论分析-程序员宅基地

文章浏览阅读290次,点赞8次,收藏10次。1.背景介绍稀疏编码是一种用于处理稀疏数据的编码技术,其主要应用于信息传输、存储和处理等领域。稀疏数据是指数据中大部分元素为零或近似于零的数据,例如文本、图像、音频、视频等。稀疏编码的核心思想是将稀疏数据表示为非零元素和它们对应的位置信息,从而减少存储空间和计算复杂度。稀疏编码的研究起源于1990年代,随着大数据时代的到来,稀疏编码技术的应用范围和影响力不断扩大。目前,稀疏编码已经成为计算...

随便推点

net中 DLL、GAC-程序员宅基地

文章浏览阅读93次。为什么80%的码农都做不了架构师?>>> ..._.net dll gac

(一看就会)Visual Studio设置字体大小_visual studio怎么调整字体大小-程序员宅基地

文章浏览阅读4.7k次,点赞3次,收藏6次。点击工具,选择 选项。_visual studio怎么调整字体大小

Linux中如何读写硬盘(或Virtual Disk)上指定物理扇区_dd写入确定扇区-程序员宅基地

文章浏览阅读4.2k次。文件系统调试Linux中如何读写硬盘(或Virtual Disk)上指定物理扇区读指定物理扇区dd if= of= skip= bs=512 count=1写指定物理扇区dd if= of= seek= bs=512 count=1如何读写文件系统上指定Block所存储的数据步骤:1、计算文件系统Block对应的物理扇区物理扇区号= Block Num_dd写入确定扇区

python【力扣LeetCode算法题库】面试题 17.16- 按摩师(DP)_一个有名的讲师,预约一小时为单位,每次预约服务之间要有休息时间,给定一个预约请-程序员宅基地

文章浏览阅读420次。面试题 17.16. 按摩师一个有名的按摩师会收到源源不断的预约请求,每个预约都可以选择接或不接。在每次预约服务之间要有休息时间,因此她不能接受相邻的预约。给定一个预约请求序列,替按摩师找到最优的预约集合(总预约时间最长),返回总的分钟数。注意:本题相对原题稍作改动示例 1:输入: [1,2,3,1]输出: 4解释: 选择 1 号预约和 3 号预约,总时长 = 1 + 3 = 4。示..._一个有名的讲师,预约一小时为单位,每次预约服务之间要有休息时间,给定一个预约请

进制的转换技巧_10111100b转换为十进制-程序员宅基地

文章浏览阅读617次。二进制2^0 = 1 2^1 = 2 2^4 = 16 2^2 = 4 2^5 = 32 2^7 = 1282^3 = 8 2^6 = 64 2^8 = 256 2^9 = 512 转换十六进制技巧:四位一组,分组用8421码转换例子:10111100B① 1011 1100 // 4个一组 ② B(11) C(12) // 用 ..._10111100b转换为十进制

物联网时代 权限滥用漏洞的攻击及防御-程序员宅基地

文章浏览阅读243次。0x00 简介权限滥用漏洞一般归类于逻辑问题,是指服务端功能开放过多或权限限制不严格,导致攻击者可以通过直接或间接调用的方式达到攻击效果。随着物联网时代的到来,这种漏洞已经屡见不鲜,各种漏洞组合利用也是千奇百怪、五花八门,这里总结漏洞是为了更好地应对和预防,如有不妥之处还请业内人士多多指教。0x01 背景2014年4月,在比特币飞涨的时代某网站曾经..._使用物联网漏洞的使用者