- Java.util 包类
- Java.util - 首页
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util 包扩展
- Java.util - 接口
- Java.util - 异常
- Java.util - 枚举
- Java.util 有用资源
- Java.util - 有用资源
- Java.util - 讨论
Java Formatter ioException() 方法
描述
Java Formatter ioException() 方法返回此格式化程序的 Appendable 最后抛出的 IOException。
如果目标的 append() 方法从未抛出 IOException,则此方法将始终返回 null。
声明
以下是 java.util.Formatter.ioException() 方法的声明
public IOException ioException()
参数
无
返回值
此方法返回 Appendable 最后抛出的异常,如果不存在此类异常,则返回 null。
异常
无
检查 US 本地化格式化程序对象的 IOException 示例
以下示例演示了 Java Formatter ioException() 方法的使用,用于在使用格式化程序时打印 Appendable 抛出的 IOException。我们创建了一个带有 StringBuffer 和 US 本地化的格式化程序对象。Formatter 用于使用 format() 方法打印字符串。然后我们打印了 ioException 对象。在本例中,它打印为 null。
package com.tutorialspoint; import java.util.Formatter; import java.util.Locale; public class FormatterDemo { public static void main(String[] args) { // create a new formatter StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer, Locale.US); // format a new string String name = "World"; formatter.format("Hello %s !", name); // print the formatted string with default locale System.out.println("" + formatter); // print latest exception, which is null System.out.println("" + formatter.ioException()); formatter.close(); } }
输出
让我们编译并运行以上程序,这将产生以下结果:
Hello World ! null
检查德语本地化格式化程序对象的 IOException 示例
以下示例演示了 Java Formatter ioException() 方法的使用,用于在使用格式化程序时打印 Appendable 抛出的 IOException。我们创建了一个带有 StringBuffer 和德语本地化的格式化程序对象。Formatter 用于使用 format() 方法打印字符串。然后我们打印了 ioException 对象。在本例中,它打印为 null。
package com.tutorialspoint; import java.util.Formatter; import java.util.Locale; public class FormatterDemo { public static void main(String[] args) { // create a new formatter StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer, Locale.GERMAN); // format a new string String name = "World"; formatter.format("Hello %s !", name); // print the formatted string with default locale System.out.println("" + formatter); // print latest exception, which is null System.out.println("" + formatter.ioException()); formatter.close(); } }
输出
让我们编译并运行以上程序,这将产生以下结果:
Hello World ! null
检查法语本地化格式化程序对象的 IOException 示例
以下示例演示了 Java Formatter ioException() 方法的使用,用于在使用格式化程序时打印 Appendable 抛出的 IOException。我们创建了一个带有 StringBuffer 和法语本地化的格式化程序对象。Formatter 用于使用 format() 方法打印字符串。然后我们打印了 ioException 对象。在本例中,它打印为 null。
package com.tutorialspoint; import java.util.Formatter; import java.util.Locale; public class FormatterDemo { public static void main(String[] args) { // create a new formatter StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer, Locale.FRENCH); // format a new string String name = "World"; formatter.format("Hello %s !", name); // print the formatted string with default locale System.out.println("" + formatter); // print latest exception, which is null System.out.println("" + formatter.ioException()); formatter.close(); } }
输出
让我们编译并运行以上程序,这将产生以下结果:
Hello World ! null