Java 中有兩種右對齊文字的方法:1. 使用printf() 方法,在格式化字串中使用「%-10s」 指定器,其中10 表示輸出欄位寬度;2. 使用String.format() 方法,在格式化字串中同樣使用「%-10s」 指定器來右對齊傳回的格式化字串。
如何在 Java 中右對齊?
Java 中右對齊文字有兩種主要方法:
1. 使用printf() 方法
printf() 方法接受一個格式化字串,其中包含%flags[.precision]s 指定器,用於控制輸出格式。要右對齊,可以使用 - 標誌。
<code class="java">System.out.printf("%-10s", "Right-aligned");</code>
這將輸出:
<code>Right-aligned</code>
其中 10 表示輸出欄位的寬度。
2. 使用String.format() 方法
String.format() 方法也接受一個格式化字串,但它傳回一個格式化後的字符串,而不是將其直接列印到控制台。要右對齊,可以使用 %flags[.precision]s 指定器,其中 - 標誌表示右對齊。
<code class="java">String formatted = String.format("%-10s", "Right-aligned"); System.out.println(formatted);</code>
這將輸出與上述相同的結果。
以上是java怎麼右對齊的詳細內容。更多資訊請關注PHP中文網其他相關文章!