The `read` method in `java.util.BufferedReader` class is used to read a single character from the input stream and return its ASCII value. It reads the next character from the input stream and advances the cursor to the next character position. This method returns an integer value representing the ASCII value of the character read. If the end of the stream has been reached, it returns -1.
Java BufferedReader.read - 30 examples found. These are the top rated real world Java examples of java.util.BufferedReader.read extracted from open source projects. You can rate examples to help us improve the quality of examples.