xlet crash
When i add the second line of this:
leerArchivoConfig config = new leerArchivoConfig();
prueba = config.getcolorFranjaTexto();
to my initxlet, the program crash and dont show nothing on screen. Can someone help me?
leerArchivoConfig have this method something like that
public int[] getcolorFranjaTexto(){
BufferedReader entrada = new BufferedReader((new FileReader("ticker.ini")));
while ((txt = entrada.readLine()) != null)
{
if (txt.equals("colorFranjaTexto")) {
colorFranjaTexto[0] = Integer.parseInt(entrada.readLine());
colorFranjaTexto[1] = Integer.parseInt(entrada.readLine());
}
entrada.close();
}

