Bueno este es mi código que me compila y se ejecuta pero no sale lo que tiene que salir por pantalla:
Código PHP:
public class ManejarArchioTXT {
public void ManejarArchivoTXT(){}
public void PropiedadesDelFichero(){
File f = new File("C:/Documents and Settings/viclopez/Desktop/pruebaa.txt");
if (f.canRead())
System.out.println("El fichero existe y se puede leer");
if (f.canWrite())
System.out.println("El fichero existe y se puede escribir en él");
if (f.canExecute())
System.out.println("El fichero existe y se puede ejecutar");
}
public void Leer() throws FileNotFoundException, IOException{
// Se abre el fichero para lectura y escritura.
FileReader fi = new FileReader("C:/Documents and Settings/viclopez/Desktop/pruebaa.txt");
BufferedReader brl = new BufferedReader(fi);
String lectura;
lectura = brl.toString();
System.out.println(lectura);
lectura.replaceAll("hola", "dos");
System.out.println(lectura);
}
}
alguien me puede ayudar por favor??