博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java格式化输出方法
阅读量:6211 次
发布时间:2019-06-21

本文共 504 字,大约阅读时间需要 1 分钟。

##Java中实现格式化输出的几种方式:

1、System.out.printf();
类似于c语言的printf方法。如:

int x = 55;

System.out.format(“x = %5x”, x);

输出结果为:x = 37

2、System.out.format()

int x = 55;

System.out.printf(“x = %5c”, x);

输出结果为:x = 7

3、String.format()

String提供的静态方法。

int x = 55;

System.out.println(String.format(“x = %5x”, x));

输出结果为:x = 37

4、Formatter

int x = 55;

Formatter format = new Formatter(System.out);

format.format(“x = %5x”, x);

输出结果为:x = 37


本文来自 wanna_wsl 的CSDN 博客 ,全文地址请点击:

转载于:https://www.cnblogs.com/fjw3214/p/10705148.html

你可能感兴趣的文章
Google API设计指南-资源名称
查看>>
【工具使用系列】关于 MATLAB 遗传算法与直接搜索工具箱,你需要知道的事
查看>>
Kali-linux Arpspoof工具
查看>>
PDF文档页面如何重新排版?
查看>>
基于http协议使用protobuf进行前后端交互
查看>>
AlphaGo Zero用它来调参?【高斯过程】到底有何过人之处?
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
弃 Java 而使用 Kotlin 的你后悔了吗?| kotlin将会是最好的开发语言
查看>>
JavaScript 数据类型
查看>>
量子通信和大数据最有市场突破前景
查看>>
StringBuilder用法小结
查看>>
android studio :cannot resolve symbol R
查看>>
对‘初学者应该选择哪种编程语言’的回答——计算机达人成长之路(38)
查看>>
物联网商机迸发 LPWAN芯片现身 本文转自d1net(转载)
查看>>
Cisco Nexus 1000V
查看>>
剥开比原看代码09:通过dashboard创建密钥时,前端的数据是如何传到后端的?
查看>>
linux下恢复误删文件
查看>>
Universal-Image-Loader,android-Volley,Picasso、Fresco和Glide开源组件加载网络图片的优缺点比较...
查看>>