Java中常用输出方式(print() println() printf())
作者:senxu_
一.print()
直接输出,不换行
System.out.print();
public class Example{ public static void main(String[] args) { int[] array = {2,5,85,30,75,66,-18,0}; for(int arrays:array){ System.out.print(arrays+" "); } } }
2 5 85 30 75 66 -18 0
注意:该方法参数不可为空
public class Example{ public static void main(String[] args) { System.out.print(); } }
二.println()
每次输出后自动换行
System.out.println();
作用相当于
System.out.print("\n");
public class Example{ public static void main(String[] args) { int[] array = {2,5,85,30,75,66,-18,0}; for(int arrays:array){ System.out.println(arrays); } } }
2
5
85
30
75
66
-18
0
该方法参数可以为空,起换行的作用
import java.util.*; public class Example{ public static void main(String[] args) { int[] array = {2,5,85,30,75,66,-18,0}; for(int arrays:array){ System.out.print(arrays+" "); } System.out.println(); Arrays.sort(array); //顺便复习下上一篇文章提到的Arrays.sort()方法 for(int arrays:array){ System.out.print(arrays+" "); } System.out.println(); } }
2 5 85 30 75 66 -18 0
-18 0 2 5 30 66 75 85
三.printf()
C风格的输出,实现格式化输出功能
System.out.printf();
查阅printf API
public PrintStream printf(String format, Object ... args) // 使用指定的格式字符串和参数将格式化字符串写入入到输出流 public PrintStream printf(Locale l, String format, Object ... args) // 基于本地化环境使用指定的格式字符串和参数将格式化字符串写入到输出流
format是输出的格式,args是输出的对象,locale用于如何控制应用的国际化行为
注:format不能为null,当format为null时,抛出NullPointException
注意:
- printf()不能换行
- printf()不能不带内容直接输出
- printf()可以实现固定长度输出
常用标志字符:
标志字符 | 功能 |
+ | 打印正数和负数的符号 |
- | 左对齐(不指定-时,默认右对齐) |
空格 | 在正数之前添加空格,负数之前不做处理 |
0 | 数字前补0 |
( | 将负数括在()内 |
, | 添加分组分隔符,(只对定点浮点数的整数部分添加分组分隔符) |
#(对于f格式) | 包含小数点 |
#(对于x或o格式) | 添加前缀0x或0 |
$ | 指定要格式化的参数索引 |
< | <格式化前面说明的数值 |
% | 格式说明的起始符号 |
m | 域宽,即对应的输出项在输出设备上所占的字符数 |
n | 精度,说明输出的实型数的小数位数。未指定n时,隐含的精度为n=6位 |
l | 对整型指long型,对实型指double型 |
h | 用于将整型的格式字符修正为short型 |
常用转换符:
转换符 | 类型 |
d | 十进制整数 |
x(X) | 十六进制整数(将字母变成大写形式) |
o | 八进制整数 |
f | 以十进制格式化输出浮点数 |
e(E) | 科学技术法(大写形式) |
g | 通用浮点数(e和f中较短的一个) |
a | 16进制浮点数 |
s | 字符串 |
c | 字符 |
b | 布尔 |
h | 散列码 |
tx或x | 日期时间(T强制大写) |
% | 百分号 |
n | 换行符 |
常用与时间有关的转换符:
转换符 | 类型 |
y | 输出日期的年份(2位数的年) |
m | 输出日期的月份 |
d | 输出日期的日号 |
Y | 输出日期的年份(4位数的年) |
B | 输出日期的月份的完整名 |
b | 输出日期的月份的简称 |
H | 输出时间的时(24进制) |
I | 输出时间的时(12进制) |
M | 输出时间的分 |
S | 输出时间的秒 |
A | 星期几的全称 |
a | 星期几的简称 |
转换符 | 类型 |
c | 包括全部日期和时间信息 |
F | "年-月-日"格式 |
D | "月/日/年"格式 |
r | "HH:MM:SS PM"格式(12时制) |
T | "HH:MM:SS"格式(24时制) |
R | "HH:MM"格式(24时制) |
L | 输出时间的秒中的毫秒 |
p | 输出时间的上午或下午信息 |
注:在使用上列转换符格式化时间和日期时,应使用两个字母格式,以%t开头并且以下面表格中的一个字母结尾
import java.util.Date; public class Example { public static void main(String[] args) { Integer i = 99; Double d = 99.0d; // %d表示将整数格式化为10进制整数 //-500; 4399; 99 System.out.printf("%d; %d; %d%n", -500, 4399L, i); // %x表示将整数格式化为16进制整数 //fffffe0c; 112f; 63 System.out.printf("%x; %x; %x%n", -500, 4399L, i); // %X表示将整数格式化为16进制整数,并且字母变成大写形式 //FFFFFE0C; 112F; 63 System.out.printf("%X; %X; %X%n", -500, 4399L, i); // %o表示将整数格式化为8进制整数 //37777777014; 10457; 143 System.out.printf("%o; %o; %o%n", -500, 4399L, i); // %f表示以十进制格式化输出浮点数 //-123.123001; 1234.123456; 99.000000 System.out.printf("%f; %f; %f%n", -123.123f, 1234.123456d, d); // %e表示以科学技术法输出浮点数 //-1.231230e+02; 1.234123e+03; 9.900000e+01 System.out.printf("%e; %e; %e%n", -123.123f, 1234.123456d, d); // %E表示以科学技术法输出浮点数,并且为大写形式 //-1.231230E+02; 1.234123E+03; 9.900000E+01 System.out.printf("%E; %E; %E%n", -123.123f, 1234.123456d, d); // 还可以限制小数点后的位数 //-123.1; 1234.123; 99.000000 System.out.printf("%.1f; %.3f; %f%n", -123.123f, 1234.123456d, d); //%g表示以通用浮点数形式输出 //99.0000 默认小数点后保留四位小数 System.out.printf("%g%n", d); //%a表示以16进制浮点数形式输出 //0x1.8cp6 System.out.printf("%a%n", d); // %s表示输出字符串,也就是将后面的字符串替换模式中的%s //99 System.out.printf("%s%n", i); // %c表示输出字符 //A System.out.printf("%c%n", 'A'); // %b表示输出字符 //true = true System.out.printf("true = %b%n ", true); // %n表示换行 // end line System.out.printf("%s%n", "end line"); // 多个参数 //Name = Zhangsan System.out.printf("%s = %s%n", "Name", "Zhangsan"); // %S将字符串以大写形式输出 //NAME = Zhangsan System.out.printf("%S = %s%n", "Name", "Zhangsan"); // 支持多个参数时,可以在%s之间插入变量编号,1$表示第一个字符串,3$表示第3个字符串 //Name = Zhang san System.out.printf("%1$s = %3$s %2$s%n", "Name", "san", "Zhang"); // %t表示格式化日期时间类型,%T是时间日期的大写形式,在%t之后用特定的字母表示不同的输出格式 Date date = new Date(); long dataL = date.getTime(); // 格式化年月日 // %t之后用y表示输出日期的年份(2位数的年,如99) // %t之后用m表示输出日期的月份,%t之后用d表示输出日期的日号 //22-08-11; 22-08-11 System.out.printf("%1$ty-%1$tm-%1$td; %2$ty-%2$tm-%2$td%n", date, dataL); // %t之后用Y表示输出日期的年份(4位数的年), // %t之后用B表示输出日期的月份的完整名, %t之后用b表示输出日期的月份的简称 //2022-八月-11; 2022-八月-11 System.out.printf("%1$tY-%1$tB-%1$td; %2$tY-%2$tb-%2$td%n", date, dataL); // %t之后用H表示输出时间的时(24进制),%t之后用I表示输出时间的时(12进制), // %t之后用M表示输出时间的分,%t之后用S表示输出时间的秒 //23:42:27; 11:42:27 System.out.printf("%1$tH:%1$tM:%1$tS; %2$tI:%2$tM:%2$tS%n", date, dataL); // %t之后用A表示得到星期几的全称 //2022-08-11 星期四 System.out.printf("%1$tF %1$tA%n", date); // %t之后用a表示得到星期几的简称 //2022-08-11 星期四 System.out.printf("%1$tF %1$ta%n", date); // 输出时间日期的完整信息 //星期四 八月 11 23:42:27 CST 2022 System.out.printf("%tc%n", date); //%t之后用F表示以"%tY-%tm-%td"格式化日期 //2022-08-11 System.out.printf("%1$tF%n", date); // %t之后用D表示以 "%tm/%td/%ty"格式化日期 //08/11/22 System.out.printf("%1$tD%n", date); // %t之后用r表示以"%tI:%tM:%tS %Tp"格式化时间 //11:42:27 下午 System.out.printf("%1$tr%n", date); // %t之后用T表示以"%tH:%tM:%tS"格式化时间 //23:42:27 System.out.printf("%1$tT%n", date); // %t之后用R表示以"%tH:%tM"格式化时间 //23:42 System.out.printf("%1$tR%n", date); // %t之后用L表示输出时间的秒中的毫秒 //23:42:27 896 System.out.printf("%1$tH:%1$tM:%1$tS %1$tL%n", date); // %t之后p表示输出时间的上午或下午信息 //23:42:27 896 下午 System.out.printf("%1$tH:%1$tM:%1$tS %1$tL %1$tp%n", date); } }
-500; 4399; 99
fffffe0c; 112f; 63
FFFFFE0C; 112F; 63
37777777014; 10457; 143
-123.123001; 1234.123456; 99.000000
-1.231230e+02; 1.234123e+03; 9.900000e+01
-1.231230E+02; 1.234123E+03; 9.900000E+01
-123.1; 1234.123; 99.000000
99.0000
0x1.8cp6
99
A
true = true
end line
Name = Zhangsan
NAME = Zhangsan
Name = Zhang san
22-08-11; 22-08-11
2022-八月-11; 2022-八月-11
23:59:06; 11:59:06
2022-08-11 星期四
2022-08-11 星期四
星期四 八月 11 23:59:06 CST 2022
2022-08-11
08/11/22
11:59:06 下午
23:59:06
23:59
23:59:06 410
23:59:06 410 下午
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。