Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package PXTI_002;
- import java.io.IOException;
- import java.nio.file.Files;
- import java.nio.file.Path;
- import java.nio.file.Paths;
- public class Arquivo
- {
- public static void main(String[] args) throws IOException
- {
- //Java 7
- Path path = Paths.get("c:/xti/files/test_virus.bat");
- System.out.println(path.toAbsolutePath());
- System.out.println(path.getParent());
- System.out.println(path.getRoot());
- System.out.println(path.getFileName());
- // Criação de diretórios
- Files.createDirectories(path.getParent());
- // Escrever e ler arquivos
- byte[] bytes = "echo codigo_virus > virus.txt".getBytes();
- Files.write(path, bytes); //cria,limpa,escreve
- byte[] retorno = Files.readAllBytes(path);
- System.out.println(new String(retorno));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement