|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of GeneralFile in uva.infor.soft |
---|
Methods in uva.infor.soft that return GeneralFile | |
---|---|
static GeneralFile |
SimpleIO.createGeneralFile(java.lang.String nomFich)
Crea un objeto de tipo fichero general abierto para escritura |
static GeneralFile |
SimpleIO.openGeneralFile(java.lang.String nomFich)
Crea un objeto de tipo fichero general abierto para lectura |
Methods in uva.infor.soft with parameters of type GeneralFile | |
---|---|
static void |
SimpleIO.close(GeneralFile fich)
Cierra el fichero, permitiendo que otros programas puedan acceder a él. |
static boolean |
SimpleIO.isEndOfFile(GeneralFile fich)
Comprueba si quedan o no datos por leer en el fichero. |
static java.lang.String |
SimpleIO.msgError(GeneralFile fich)
Permite obtener una String describiendo el ultimo error producido. |
static double |
SimpleIO.readDouble(GeneralFile fich)
Lee un número real del fichero. |
static int |
SimpleIO.readInt(GeneralFile fich)
Lee un entero del fichero. |
static java.lang.Object |
SimpleIO.readOther(GeneralFile fich)
Lee un dato no primitivo del fichero. |
static int |
SimpleIO.status(GeneralFile fich)
Permite comprobar si la última operación sobre el fichero se ha realizado correctamente. |
static void |
SimpleIO.writeDouble(GeneralFile fich,
double dato)
Escribe un double en el fichero. |
static void |
SimpleIO.writeInt(GeneralFile fich,
int dato)
Escribe un entero en el fichero. |
static void |
SimpleIO.writeOther(GeneralFile fich,
java.lang.Object dato)
Escribe un dato no primitivo al fichero. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |