web-dev-qa-db-ja.com

printf出力をJava

配列からアイテムの価格と価格のリストを表示する必要があり、価格を調整したいと思います。私はそれがほとんど機能していますが、改善が必要です。以下はコードと出力です。すべての価格を一致させる方法はありますか?これまでのところ、いくつかは機能しますが、一部は機能しません。前もって感謝します。

//for loop
System.out.printf("%d. %s \t\t $%.2f\n",
                i + 1, BOOK_TYPE[i], COST[i]);

出力:

1. Newspaper         $1.00
2. Paper Back        $7.50
3. Hardcover book        $10.00
4. Electronic book       $2.00
5. Magazine          $3.00
16
user1781482

以下の例を試すことができます。左インデントを確保するために、幅の前に「-」を使用してください。デフォルトでは、右インデントされます。あなたの目的に合わないかもしれません。

System.out.printf("%2d. %-20s $%.2f%n",  i + 1, BOOK_TYPE[i], COST[i]);

フォーマット文字列の構文: http://docs.Oracle.com/javase/7/docs/api/Java/util/Formatter.html#syntax

数値印刷出力のフォーマット: https://docs.Oracle.com/javase/tutorial/Java/data/numberformat.html

PS:これはDwBの答えへのコメントとして行くことができますが、私はまだコメントする許可がありませんので、それに答えます。

21
LionsDen

printf およびprintf-likeメソッドのフォーマット仕様は、オプションの幅パラメーターを取ります。

System.out.printf( "%10d. %25s $%25.2f\n",
                   i + 1, BOOK_TYPE[i], COST[i] );

幅を希望の値に調整します。

5
DwB

頭に浮かぶ簡単な解決策は、スペースのStringブロックを持つことです。

String indent = "                  "; // 20 spaces.

文字列を出力するとき、実際のインデントを計算して最後に追加します:

String output = "Newspaper";
output += indent.substring(0, indent.length - output.length);

これにより、文字列のスペース数が調整され、すべて同じ列に配置されます。

3
christopher

最長のbookTypes値に基づいてbookType列の幅(つまり、bookTypes値の形式)を設定する潜在的なソリューションがあります。

public class Test {
    public static void main(String[] args) {
        String[] bookTypes = { "Newspaper", "Paper Back", "Hardcover book", "Electronic book", "Magazine" };
        double[] costs = { 1.0, 7.5, 10.0, 2.0, 3.0 };

        // Find length of longest bookTypes value.
        int maxLengthItem = 0;
        boolean firstValue = true;
        for (String bookType : bookTypes) {
            maxLengthItem = (firstValue) ? bookType.length() : Math.max(maxLengthItem, bookType.length());
            firstValue = false;
        }

        // Display rows of data
        for (int i = 0; i < bookTypes.length; i++) {
            // Use %6.2 instead of %.2 so that decimals line up, assuming max
            // book cost of $999.99. Change 6 to a different number if max cost
            // is different
            String format = "%d. %-" + Integer.toString(maxLengthItem) + "s \t\t $%9.2f\n";
            System.out.printf(format, i + 1, bookTypes[i], costs[i]);
        }
    }
}
1
Rick Upton

コンソールで書式設定された色付きテキストを印刷するには、このブログを参照できます

https://javaforqa.wordpress.com/Java-print-coloured-table-on-console/

public class ColourConsoleDemo {
/**
*
* @param args
*
* "\033[0m BLACK" will colour the whole line
*
* "\033[37m WHITE\033[0m" will colour only WHITE.
* For colour while Opening --> "\033[37m" and closing --> "\033[0m"
*
*
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("\033[0m BLACK");
System.out.println("\033[31m RED");
System.out.println("\033[32m GREEN");
System.out.println("\033[33m YELLOW");
System.out.println("\033[34m BLUE");
System.out.println("\033[35m Magenta");
System.out.println("\033[36m CYAN");
System.out.println("\033[37m WHITE\033[0m");

//printing the results
String leftAlignFormat = "| %-20s | %-7d | %-7d | %-7d |%n";

System.out.format("|---------Test Cases with Steps Summary -------------|%n");
System.out.format("+----------------------+---------+---------+---------+%n");
System.out.format("| Test Cases           |Passed   |Failed   |Skipped  |%n");
System.out.format("+----------------------+---------+---------+---------+%n");

String formattedMessage = "TEST_01".trim();

leftAlignFormat = "| %-20s | %-7d | %-7d | %-7d |%n";
System.out.print("\033[31m"); // Open print red
System.out.printf(leftAlignFormat, formattedMessage, 2, 1, 0);
System.out.print("\033[0m"); // Close print red
System.out.format("+----------------------+---------+---------+---------+%n");
}
0
hemanto