31/03/2006, 06:49
|
| | Fecha de Ingreso: febrero-2006
Mensajes: 155
Antigüedad: 18 años, 10 meses Puntos: 0 | |
codigo import java.io.*;
import java.util.Properties;
public class password{
static BufferedReader teclado = new BufferedReader(new InputStreamReader(System.in));
public static void main(String args[])
{
String password="";
String line="";
String autorizado="NO";
try {
System.out.print("INTRODUZCA PASSWORD: " );
password=teclado.readLine();
File File1 = new File("C:/password_autorizado.txt");
FileReader FR = new FileReader(File1);
BufferedReader BR = new BufferedReader(FR);
while ( (line = BR.readLine()) != null)
{
if (line.equals(password))
{
autorizado ="PASSWORD CORRECTO";}
else {
System.out.println("PASSWORD INCORRECTO" );
}
BR.close();
FR.close();
}
}
catch (IOException e)
{
//System.out.println(e);
}
System.out.println(autorizado);
}
} |