How to read an input file char by char using a Sca

2019-04-26 15:46发布

问题:

I have to use Scanner, so is there a nextChar() instead of nextLine() method that I could use?

Thanks!

回答1:

You can convert in an array of chars.

import java.io.*;
import java.util.Scanner;


public class ScanXan {
    public static void main(String[] args) throws IOException {
        Scanner s = null;
        try {
            s = new Scanner(new BufferedReader(new FileReader("yourFile.txt")));
            while (s.hasNext())
            {
               String str = s.next(); 
                char[] myChar = str.toCharArray();
                // do something
            }
        } finally {
            if (s != null) {
                s.close();
            }
        }
    }


回答2:

If you have to use a Scanner (as you noted in your edit), try this:

myScanner.useDelimiter("(?<=.)");

Now myScanner should read character by character.


You might want to use a BufferedReader instead (if you can) - it has a read method that reads a single character. For instance, this will read and print the first character of your file:

BufferedReader br = new BufferedReader(new FileReader("somefile.txt"));
System.out.println((char)br.read());
br.close();


回答3:

Split the line into characters using String.toCharArray().



回答4:

If you're committed to using Scanner then you can use next(String pattern).

String character = scanner.next(".");

The above returns a String of length 1 -- that is, you get a character, but as a string.



标签: java input io