Java printff 字符串仅输出格式
如何使用 printf 格式化输出。
假设我想在格式化程序中打印以下内容。
testing testing testing testing
testingggg testingggg testingggg testingggg
我不是在问使用“\t”,我是在问 printf 样式格式?如果有人能给我建议和例子。或者可以链接到示例。我可以做以满足我的需要。
How do I format output by using printf.
suppose i want to print following in formatter.
testing testing testing testing
testingggg testingggg testingggg testingggg
I am not asking about using "\t", I am asking on printf style formatting? If some one can give me suggestion and example. Or may be link with example. I can do it to fit my need.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找 格式化程序 类,它为 Java 执行 printf 样式的格式化。
例如,应用于您的输入:
产生:
I think you're looking for the Formatter class, which does printf-style formatting for Java.
For example, applied to your input:
Produces:
您可以使用 System.out.printf("%sggg" , t)
其中
t = "testing"
并且
ggg
只是附加到该字符串上。希望这有帮助:D
You can use
System.out.printf("%sggg" , t)
Where
t = "testing"
and
ggg
is just appended onto this string.Hope this helps :D