private void escribirStringRandomFile(RandomAccessFile raf, String entrada,int longitud) throws IOException {
if (entrada.length() >= longitud) {
for (int i = 0; i < longitud; i++) {
raf.writeChar(entrada.charAt(i));
}
} else {
for (int i = 0; i < entrada.length(); i++) {
raf.writeChar(entrada.charAt(i));
}
for (int i = entrada.length(); i < longitud; i++) {
raf.writeChar(' ');
}
}
}
Metodo que escrtibe un string en un archivo de acceso aleatorio donde se controla que tenga una longitud determinada.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.