Ibland vill vi att utdata från ett program ska skrivas ut i ett givet specifikt format. I programmeringsspråket C är detta möjligt med funktionen printf( ). I det här avsnittet kommer vi att diskutera olika utdataformatering.
Låt oss diskutera hur vi kan formatera utdata i Java.
Det finns två metoder som kan användas för att formatera utdata i Java:
kan en abstrakt klass ha en konstruktor
- Använder metoden printf( ).
- Använder metoden format( ).
Formatera utdata med metoden System.out.printf( ).
Implementeringen av denna metod är mycket enkel eftersom den liknar funktionen printf( ) i C-programmering.
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 ) ; } }
Produktion:
rohit shetty skådespelare
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( ) motsvarar printf( ) och kan också användas.
En viktig punkt att notera är att System.out.print( ) och System.out.println( ) tar ett enda argument, men metoden printf( ) kan acceptera flera argument.
Formatera med klassen DecimalFormat:
DecimalFormat används för att formatera decimaltal.
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 ) ) ; } }
Produktion:
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
Java String Format Specifiers
Här tillhandahåller vi en tabell med formatspecifikationer som stöds av Java-strängen.
java datatyper
Formatspecifikation | Data typ | Produktion |
---|---|---|
%a | flyttal (förutom BigDecima l) | Returnerar hexadecimal utdata för flyttal. |
%b | Vilken typ som helst | ' true ' om icke-null, ' false ' om null |
%c | Karaktär | Unicode-tecken |
%d | heltal (inkl. byte, kort, int, lång, bigint) | Decimalt heltal |
%Det är | flytpunkt | Decimaltal i vetenskaplig notation |
%f | flytpunkt | Decimal nummer |
%g | flytpunkt | Decimaltal, eventuellt i vetenskaplig notation beroende på precision och värde. |
%h | Vilken typ som helst | Hex Värdesträng från metoden hashCode( ). |
%n | Ingen | Plattformsspecifik linjeavskiljare. |
%O | heltal (inkl. byte, kort, int, lång, bigint) | Oktalt nummer |
%s | Vilken typ som helst | Strängvärde |
%t | Datum/tid (inkl. lång, kalender, datum och temporär åtkomst) | %t är prefixet för datum/tid-omvandlingar. Fler formateringsflaggor behövs efter detta. Se datum/tid konvertering nedan. |
%x | heltal (inkl. byte, kort, int, lång, bigint) | Hexsträng. |