logo

Výstupné formátovanie Java

Niekedy chceme, aby bol výstup programu vytlačený v danom špecifickom formáte. V programovacom jazyku C je to možné pomocou funkcie printf(). V tejto časti sa budeme zaoberať rôznym formátovaním výstupu.

Poďme diskutovať o tom, ako môžeme formátovať výstup v Jave.

Existujú dva spôsoby, ktoré možno použiť na formátovanie výstupu v jazyku Java:

sql konkat
  • Pomocou metódy printf().
  • Použitie metódy format( ).

Formátovanie výstupu pomocou metódy System.out.printf( ).

Implementácia tejto metódy je veľmi jednoduchá, keďže je podobná funkcii printf() v programovaní v jazyku C.

FormattedOutput1.java

 public class FormattedOutput1 { public static void main( String args[ ] ) { // printing the string value on the console String str = ' JavaTpoint ' ; System.out.printf( ' 
 Printing the String value : %s 
 ', str ) ; // printing the integer value on the console int x = 512 ; System.out.printf( ' 
 Printing the integer value : x = %d 
 ', x ) ; // printing the decimal value on the console float f = 5.25412368f ; System.out.printf( ' 
 Printing the decimal value : %f 
 ', f ) ; // this formatting is used to specify the width un to which the digits can extend System.out.printf( ' 
 Formatting the output to specific width : n = %.4f 
 ', f ) ; // this formatting will print it up to 2 decimal places System.out.printf( ' 
 Formatted the output with precision : PI = %.2f 
 ', f ) ; // here number is formatted from right margin and occupies a width of 20 characters System.out.printf( ' 
 Formatted to right margin : n = %20.4f 
 ', f ) ; } } 

Výkon:

priemer vs priemer
 Printing the String value : JavaTpoint Printing the integer value : x = 512 Printing the decimal value : 5.254124 Formatting the output to specific width : n = 5.2541 Formatted the output with precision : PI = 5.25 Formatted to right margin : n = 5.2541 

System.out.format() je ekvivalentný s printf() a možno ho tiež použiť.

Dôležité je poznamenať, že System.out.print() a System.out.println() majú jeden argument, ale metóda printf() môže akceptovať viacero argumentov.

Formátovanie pomocou triedy DecimalFormat:

DecimalFormat sa používa na formátovanie desatinných čísel.

FormattedOutput2.java

 import java.text.DecimalFormat ; // definition of the class public class FormattedOutput2 { public static void main( String args[ ] ) { double x = 123.4567 ; // printing the number System.out.printf( ' 
 The number is : %f 
 ', x ) ; // printing only the numeric part of the floating number DecimalFormat ft = new DecimalFormat( ' #### ' ) ; System.out.println( ' 
 Without fraction part the number is : ' + ft.format( x ) ) ; // printing the number only upto 2 decimal places ft = new DecimalFormat( ' #.## ' ) ; System.out.println( ' 
 Formatted number with the specified precision is = ' + ft.format( x ) ) ; // automatically appends zero to the rightmost part of decimal, instead of #, we use digit 0 ft = new DecimalFormat( ' #.000000 ' ) ; System.out.println( ' 
 Appending the zeroes to the right of the number = ' + ft.format( x ) ) ; // automatically appends zero to the leftmost of decimal number instead of #, we use digit 0 ft = new DecimalFormat( ' 00000.00 ' ) ; System.out.println( ' 
 Appending the zeroes to the left of the number = '+ ft.format( x ) ) ; // formatting money in dollars double income = 550000.789 ; ft = new DecimalFormat( ' $###,###.## ' ) ; System.out.println( ' 
 Your Formatted Income in Dollars : ' + ft.format( income ) ) ; } } 

Výkon:

 The number is : 123.456700 Without fraction part the number is : 123 Formatted number with the specified precision is = 123.46 Appending the zeroes to the right of the number = 123.456700 Appending the zeroes to the left of the number = 00123.46 Your Formatted Income in Dollars : 0,000.79 

Špecifikátory formátu reťazcov Java

Tu uvádzame tabuľku špecifikátorov formátu podporovaných reťazcom Java.

stream filtra java
Špecifikátor formátu Dátový typ Výkon
%a s pohyblivou rádovou čiarkou (okrem BigDecima l) Vráti hexadecimálny výstup čísla s pohyblivou rádovou čiarkou.
%b Akýkoľvek typ ' true ' ak nie je null, ' false ' ak null
%c Charakter Unicode znak
%d celé číslo (vrátane byte, short, int, long, bigint ) Desatinné celé číslo
%To je s pohyblivou rádovou čiarkou Desatinné číslo vo vedeckom zápise
%f s pohyblivou rádovou čiarkou Desatinné číslo
%g s pohyblivou rádovou čiarkou Desatinné číslo, prípadne vo vedeckej notácii v závislosti od presnosti a hodnoty.
%h akýkoľvek typ Hexadecimálny reťazec hodnoty z metódy hashCode().
%n žiadne Oddeľovač riadkov špecifický pre platformu.
%O celé číslo (vrátane byte, short, int, long, bigint ) Osmičkové číslo
%s akýkoľvek typ Hodnota reťazca
%t Dátum/čas (vrátane dĺžky, kalendára, dátumu a dočasného prístupu) %t je predpona pre konverzie dátumu a času. Potom sú potrebné ďalšie príznaky formátovania. Pozri konverziu dátumu/času nižšie.
%X celé číslo (vrátane byte, short, int, long, bigint ) Šesťhranný reťazec.