"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Using the Java language character-based streams

Using the Java language character-based streams

Published on 2024-11-10
Browse:805

To perform character-based I/O operations, Java provides its own hierarchy of character-based streams, with abstract classes such as Reader and Writer. These classes allow you to read and write characters directly, making them more suitable for text data than byte streams. The main methods of these classes handle reading and writing operations and can throw IOException in case of an error.

Character Stream Structure

Main Abstract Classes:

  • Reader: Base for reading characters.
  • Writer: Base for writing characters.

These classes form the minimal structure of I/O operations for character streams, with methods applicable to all subclasses.

Console Input with Character Streams
For internationalized programs or programs that manipulate text, it is preferable to read characters from the console using character streams. Since System.in is a byte stream, it needs to be adapted for character streams.

For this we use:

  • InputStreamReader: Converts bytes to characters.
  • BufferedReader: Improves efficiency by buffering input.

Example of Reading Console Input
To read console input with BufferedReader, we first convert System.in to a character stream using InputStreamReader:

import java.io.*;

public class ConsoleReaderExample {
  public static void main(String args[]) {
    try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
      System.out.print("Digite uma linha de texto: ");
      String linha = reader.readLine();
      System.out.println("Você digitou: "   linha);
    } catch(IOException e) {
      System.out.println("Erro de entrada/saída: "   e);
    }
  }
}

Code Explanation

  • InputStreamReader: Converts the byte stream from System.in to a character stream.
  • BufferedReader: Used for efficient reading of characters, strings and lines.

Advantages of Character Flows

  • Internationalization: Compatible with different character sets.
  • Efficiency: BufferedReader allows you to read an entire line at once, simplifying the process and reducing system calls.

These character streams make text processing easier and are ideal for data entry and file manipulation where characters and text are the main focus.

Usando os fluxos baseados em caracteres da linguagem Java

Release Statement This article is reproduced at: https://dev.to/devsjavagirls/usando-os-fluxos-baseados-em-caracteres-da-linguagem-java-2b22?1 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3