Java Scanner useDelimiter() 方法



描述

java Scanner useDelimiter(Pattern pattern) 方法将此扫描器的分隔符模式设置为指定的模式。

声明

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

public Scanner useDelimiter(Pattern pattern)

参数

pattern − 分隔符模式

返回值

此方法返回此扫描器

异常

Java Scanner useDelimiter(String pattern) 方法

描述

Java Scanner useDelimiter(String pattern) 方法将此扫描器的分隔符模式设置为从指定的字符串构造的模式。

声明

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

public Scanner useDelimiter(String pattern)

参数

pattern − 指定分隔符模式的字符串

返回值

此方法返回此扫描器

异常

在字符串上设置扫描器分隔符示例

以下示例演示了如何使用 Java Scanner useDelimiter(Pattern pattern) 方法为扫描器使用分隔符模式。我们使用给定的字符串创建了一个扫描器对象。我们使用 nextLine() 方法打印了一行,然后设置了一个分隔符来打印它。然后使用 close() 方法关闭扫描器。

package com.tutorialspoint;

import java.util.Scanner;
import java.util.regex.Pattern;

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

      String s = "Hello World! 3 + 3.0 = 6.0 true ";

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

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

      // change the delimiter of this scanner
      scanner.useDelimiter(Pattern.compile(".ll."));

      // display the new delimiter
      System.out.println(scanner.delimiter());

      // close the scanner
      scanner.close();
   }
}

输出

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

Hello World! 3 + 3.0 = 6.0 true 
.ll.

在用户输入上设置扫描器分隔符示例

以下示例演示了如何使用 Java Scanner useDelimiter(Pattern pattern) 方法为扫描器使用分隔符模式。我们使用 System.in 类创建了一个扫描器对象。我们使用 nextLine() 方法打印了一行,然后设置了一个分隔符来打印它。然后使用 close() 方法关闭扫描器。

package com.tutorialspoint;

import java.util.Scanner;
import java.util.regex.Pattern;

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

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

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

      // change the delimiter of this scanner
      scanner.useDelimiter(Pattern.compile(".ll."));

      // display the new delimiter
      System.out.println(scanner.delimiter());

      // close the scanner
      scanner.close();
   }
}

输出

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

Hello World
Hello World
.ll.

在属性文件中设置扫描器分隔符示例

以下示例演示了如何使用 Java Scanner useDelimiter(String pattern) 方法为扫描器使用分隔符模式。我们使用 properties.txt 文件创建了一个扫描器对象。我们使用 nextLine() 方法打印了一行,然后设置了一个分隔符来打印它。然后使用 close() 方法关闭扫描器。

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 a line of the scanner
      System.out.println(scanner.nextLine());

      // change the delimiter of this scanner
      scanner.useDelimiter(".ll.");

      // display the new delimiter
      System.out.println(scanner.delimiter());

      // close the scanner
      scanner.close();
   }
}

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

Hello World! 3 + 3.0 = 6

输出

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

Hello World! 3 + 3.0 = 6
.ll.
java_util_scanner.htm
广告