All pastes #1952324 Raw Edit

Zwinglio

public java v1 · immutable
#1952324 ·published 2010-10-01 03:05 UTC
rendered paste body
class EntraDados {    public static void main (String args[])    {         byte vetortexto[] = new byte[200]; //declaracao de um vetor de bytes      int byteslidos = 0;       System.out.println("Escreva algo:");       try {        byteslidos = System.in.read(vetortexto);        System.out.print("Voce escreveu:");        System.out.write(vetortexto,0,byteslidos);      }      catch (Exception e) {        // Alguma acao de recuperacao da falha      }          }    }