//This file generated automatically from the MARIUS LP system, please do not edit.

import java.net.URL;
import java.io.*;

public class LectorHTTP implements LectorRemotoImplIF {
    
    private String cadena;
    private String url="http://www.geocities.com/gusdelact/cib5122002";
    public String trabajar() {
        
        cadena = null;
        try {
            URL addr =new java.net.URL(url);
            BufferedReader in=new BufferedReader( new InputStreamReader(addr.openStream()));
            String linea = null;
            String acumulado = "";
            while ( (linea = in.readLine()) != null ) {
                acumulado = acumulado + linea+"\n";
            }
            cadena= acumulado;
        } catch (Exception ex) { }
        return cadena;
    }
    public void extraer() {
        
    }
    
} //End of class LectorHTTP
