Java Scanner remove() 方法



描述

此 Iterator 实现不支持 Java Scanner remove() 方法。

声明

以下是 java.util.Scanner.remove() 方法的声明

public void remove()

参数

返回值

此方法不返回值。

异常

UnsupportedOperationException − 如果调用此方法。

在字符串示例上检查 Scanner 的 Remove 方法

以下示例演示了 Java Scanner remove() 方法的使用,展示了此方法不受此对象支持。我们使用给定字符串创建了一个 Scanner 对象。然后我们使用 nextLine() 方法打印了字符串,并调用了 remove 方法,该方法抛出异常,然后使用 close() 方法关闭了 Scanner。

package com.tutorialspoint;

import java.util.Scanner;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print the next line of the string
      System.out.println(scanner.nextLine());

      try {
         // invoking remove method will cause exception
         scanner.remove();		 
      } catch(UnsupportedOperationException e){
         System.out.println("Remove method is not supported.");
      }

      scanner.close();
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Hello World! 3 + 3.0 = 6
Remove method is not supported.

在用户输入示例上检查 Scanner 的 Remove 方法

以下示例演示了 Java Scanner remove() 方法的使用,展示了此方法不受此对象支持。我们使用 System.in 创建了一个 Scanner 对象。然后我们使用 nextLine() 方法打印了字符串,并调用了 remove 方法,该方法抛出异常,然后使用 close() 方法关闭了 Scanner。

package com.tutorialspoint;

import java.util.Scanner;

public class ScannerDemo {
   public static void main(String[] args) {

      // create a new scanner with the system input
      Scanner scanner = new Scanner(System.in);

      // print the next line of the string
      System.out.println(scanner.nextLine());

      try {
         // invoking remove method will cause exception
         scanner.remove();		 
      } catch(UnsupportedOperationException e){
         System.out.println("Remove method is not supported.");
      }

      scanner.close();
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:(我们在其中输入 Hello World 并按 Enter 键。)

Hello World
Hello World
Remove method is not supported.

在属性文件示例上检查 Scanner 的 Remove 方法

以下示例演示了 Java Scanner remove() 方法的使用,展示了此方法不受此对象支持。我们使用文件 properties.txt 创建了一个 Scanner 对象。然后我们使用 nextLine() 方法打印了字符串,并调用了 remove 方法,该方法抛出异常,然后使用 close() 方法关闭了 Scanner。

package com.tutorialspoint;

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class ScannerDemo {
   public static void main(String[] args) throws FileNotFoundException {

      // create a new scanner with a file as input
      Scanner scanner = new Scanner(new File("properties.txt"));

      // print the next line of the string
      System.out.println(scanner.nextLine());

      try {
         // invoking remove method will cause exception
         scanner.remove();		 
      } catch(UnsupportedOperationException e){
         System.out.println("Remove method is not supported.");
      }

      scanner.close();
   }
}

假设我们在您的 CLASSPATH 中有一个名为 properties.txt 的文件,其内容如下。此文件将用作我们示例程序的输入:

Hello World! 3 + 3.0 = 6

输出

让我们编译并运行上述程序,这将产生以下结果。

Hello World! 3 + 3.0 = 6
Remove method is not supported.
java_util_scanner.htm
广告