Quiero almacenar en un array de tipo URL, una linea obtenida de un fichero TXT, pero me devuelve error por ser tipos incompatibles. (Soy nuevo en esto del POO)
El error salta en la linea 12.
Código Java:
Ver originalString urlsFile
= "C:\\urls.txt"; String errorException
= "Error de lectura en fichero"+urlsFile
;
* public void getURLfromTXTfile() {
* * * *try {
* * * * * *while ((line = br.readLine())!=null){
* * * * * * * *arrayList
[i
] = new URL[line
]; * * * * * * * *i++;
* * * * * *}
* * * * * *br.close();
* * * * * *System.
out.
println(errorException
); * * * *}
* *}
Gracias de antemano.