microfilo wrote:Só tranferir arquivo? É fácil... FileInputStream fis = new FileInputStream("arqOrigem"); FileOutputStream for = new FileOutputStream("arqDestino"); FileChannel fcOrg = fis.getChannel(); FileChannel fcDest = fos.getChannel(); fc.transferTo(fcDest); Teste aí o programa e veja se funciona