Java printff 字符串仅输出格式

发布于 2024-12-22 13:36:22 字数 230 浏览 0 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

朱染 2024-12-29 13:36:22

我认为您正在寻找 格式化程序 类,它为 Java 执行 printf 样式的格式化。

例如,应用于您的输入:

    StringBuilder sb = new StringBuilder();
    Formatter formatter = new Formatter(sb, Locale.US);

    formatter.format("%1$-15s %2$-15s %3$-15s %4$-15s\n", "testing", "testing", "testing", "testing");
    formatter.format("%1$-15s %2$-15s %3$-15s %4$-15s", "testingggg", "testingggg", "testingggg", "testingggg");

    System.out.println(sb.toString());

产生:

testing         testing         testing         testing        
testingggg      testingggg      testingggg      testingggg    

I think you're looking for the Formatter class, which does printf-style formatting for Java.

For example, applied to your input:

    StringBuilder sb = new StringBuilder();
    Formatter formatter = new Formatter(sb, Locale.US);

    formatter.format("%1$-15s %2$-15s %3$-15s %4$-15s\n", "testing", "testing", "testing", "testing");
    formatter.format("%1$-15s %2$-15s %3$-15s %4$-15s", "testingggg", "testingggg", "testingggg", "testingggg");

    System.out.println(sb.toString());

Produces:

testing         testing         testing         testing        
testingggg      testingggg      testingggg      testingggg    
阳光①夏 2024-12-29 13:36:22

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文