Paste: Java

Author: Zwinglio
Mode: java
Date: Sat, 9 Oct 2010 18:00:53
Plain Text |
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
      }      
    }    
}

New Annotation

Summary:
Author:
Mode:
Body: