File not found exception

TEnhu um metodo, que deveria recebr como argumento um arquivo html e transforma-lo em um arquivo txt com codigo html.
O meu metodo da File not found exception, nao sei pq…alguem pode me ajudar??


public static File emCodigoHtml(File arquivo) throws IOException {

    File arquivohtml = new File("file:/home/henrique/programa/",arquivo.getName());
    FileReader leitor = new FileReader(arquivohtml);
    char[] conteudo = new char[ (int) arquivohtml.length() ];
    leitor.read( conteudo );
    leitor.close();
    String     texto       = new String( conteudo );
    File arquivotxt=new File("file:/home/henrique/programa","entradatxt.txt");
    FileWriter gravador=new FileWriter(arquivotxt);
    PrintWriter imprime=new PrintWriter(gravador);
    imprime.print(texto);
    return arquivotxt;
         
    
}

Provavelmente não encontrou o Arquivo, da uma olhada aqui.

http://www.guj.com.br/java.tutorial.artigo.13.1.guj

Signals that an attempt to open the file denoted by a specified pathname has failed.

This exception will be thrown by the FileInputStream, FileOutputStream, and RandomAccessFile constructors when a file with the specified pathname does not exist. It will also be thrown by these constructors if the file does exist but for some reason is inaccessible, for example when an attempt is made to open a read-only file for writing.