El método write(int) de PrintStream Class en Java se usa para escribir el valor de byte especificado en la secuencia. Este valor de byte se especifica usando el valor ASCII del valor de byte pasado como un valor entero. Este valor entero se toma como parámetro.
Sintaxis:
public void write(int ascii)
Parámetros: este método acepta un parámetro obligatorio ASCII que es el valor ASCII del valor del byte que se escribirá en el flujo.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método write(int):
Programa 1:
// Java program to demonstrate // PrintStream write(int) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the byte value '0' to this stream // using write() method // This will put the string in the stream // till it is printed on the console stream.write(48); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
0
Programa 2:
// Java program to demonstrate // PrintStream write(int) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the byte value 'A' to this stream // using write() method // This will put the string in the stream // till it is printed on the console stream.write(65); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
A
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA