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();

}

[700 byte] By [RafaTorresa] at [2007-11-27 1:27:54]
# 1
Can you paste the stack trace, if any?
EVLa at 2007-7-12 0:25:05 > top of Java-index,Java Mobility Forums,Consumer and Commerce...
# 2

If you don't get a stack trace, you might want to try surrounding that line with a try-catch clause for java.lang.Throwable (the parent of Exception and Error).

If you can catch a Throwable then you can print it out and get a stack trace.

If you don't get a Throwable then you really do have a crash of the box and you need to talk to the box middleware provider.

desperadoa at 2007-7-12 0:25:05 > top of Java-index,Java Mobility Forums,Consumer and Commerce...
# 3
ok, i will see
RafaTorresa at 2007-7-12 0:25:05 > top of Java-index,Java Mobility Forums,Consumer and Commerce...