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


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


Console类format()方法

  • format() 方法可在java.io包。
  • format() 方法用于在给定的字符串格式和对象参数的帮助下将格式化的字符串写入此控制台。
  • format() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • format() 方法可能会在格式化此控制台时抛出异常。
    IllegalFormatException:当给定的字符串格式无效时,可能会抛出此异常。

用法:

    public Console format(String frmt, Object... params);

参数:

  • String frmt– 表示格式字符串中定义的格式字符串。
  • Object... params– 表示由格式字符串中的格式说明符寻址的参数。

返回值:

该方法的返回类型是Console,它返回这个控制台。

例:

// Java program to demonstrate the example 
// of Console format(String frmt , Object… params)
// method of Console

import java.io.*;

public class FormatOfConsole {
 public static void main(String[] args) {
  try {
   // Instantiates Console 
   Console con = System.console();

   // Define a string format for rows and columns
   String frmt = "%1$15s %2$20s %3$20s%n";

   // By using format() method isto format the
   // the given string in rows and column
   con.format(frmt, "Student_Name", "Student_Add", "Student_ph");
   con.format(frmt, "Preeti", "Delhi", "9425667852");
   con.format(frmt, "Rahul", "Delhi", "8871459682");
   con.format(frmt, "Shreya", "Delhi", "7216589745");
   con.format(frmt, "Rama", "Bangalore", "8871568492");
   con.format(frmt, "Anjali", "London", "8872589261");

  } catch (Exception ex) {
   System.out.println(ex.toString());
  }
 }
}

输出

Student_Name          Student_Add           Student_ph
         Preeti                Delhi           9425667852
          Rahul                Delhi           8871459682
         Shreya                Delhi           7216589745
           Rama            Bangalore           8871568492
         Anjali               London           8872589261


相关用法


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