当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Console format(String, Object)用法及代码示例


Java中Console类的format(String,Object)方法用于将格式化的字符串写入控制台的输出流。它使用指定的格式字符串和参数。

用法:

public Console format(String fmt,
                      Object... args)

参数:此方法接受两个参数:

  • fmt-它表示字符串的格式。
  • args-它表示由字符串格式的格式说明符引用的参数。

返回值:此方法返回控制台。

异常:如果字符串格式包含非法语法,或者格式说明符与给定参数不兼容,或者给定格式字符串或其他非法条件,则此方法将引发IllegalFormatException。



注意:System.console()在在线IDE中返回null。

以下示例程序旨在说明IO包中Console类中的format(String,Object)方法:

程序1:

// Java program to illustrate 
// Console format(String, Object) method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Create the console object 
        Console cnsl 
            = System.console(); 
  
        if (cnsl == null) { 
            System.out.println( 
                "No console available"); 
            return; 
        } 
  
        String fmt = "%1$4s %2$10s %3$10s%n"; 
  
        cnsl.format(fmt, "Books", "Author", "Price"); 
        cnsl.format(fmt, "-----", "------", "-----"); 
        cnsl.format(fmt, "DBMS", "Navathe", "800"); 
        cnsl.format(fmt, "Algorithm", "Cormen", "925"); 
        cnsl.format(fmt, "Operating System", "Rajib Mall", "750"); 
    } 
}
输出:

程序2:

// Java program to illustrate 
// Console format(String, Object) method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Create the console object 
        Console cnsl 
            = System.console(); 
  
        if (cnsl == null) { 
            System.out.println( 
                "No console available"); 
            return; 
        } 
  
        String fmt = "%1$4s %2$10s %3$10s%n"; 
  
        cnsl.format(fmt, "Items", "Quantity", "Price"); 
        cnsl.format(fmt, "-----", "------", "-----"); 
        cnsl.format(fmt, "Tomato", "1 Kg", "80"); 
        cnsl.format(fmt, "Apple", "3 Kg", "500"); 
        cnsl.format(fmt, "Potato", "2 Kg", "75"); 
    } 
}
输出:

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#format(java.lang.String, java.lang.Object…)




相关用法


注:本文由纯净天空筛选整理自pp_pankaj大神的英文原创作品 Console format(String, Object) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。