Advertisement
OrgCZPvP

Untitled

Dec 8th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. System.out.print("Detector v0.1\nPrograma desenvolvido por Henriq.\n");
  2.  
  3. try {
  4. String arquivo = System.console().readLine("[Digite o local do arquivo (.txt) com as Strings]:");
  5.  
  6. Path pathArq = Paths.get(arquivo);
  7.  
  8. try {
  9. System.out.print("\nAnalisando arquivo " + arquivo + ".\nAguarde...");
  10. byte[] contentsArq = Files.readAllBytes(pathArq);
  11.  
  12. System.out.print("\n" + new String(contentsArq));
  13. } catch (Exception e) {
  14. System.out.print("Arquivo não encontrado.");
  15. }
  16.  
  17.  
  18. } catch (Exception e) {
  19. System.out.print("Scanner: Erro inesperado.");
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement