Ejemplo
public class
ClassA
{
public static final
String [] array =
new
String [5];
public void
method(){
//..
}
}
Solución
Intente declararlo un campo no final no estático.
public class
ClassA
{
public
String [] array =
new
String [5];
public void
method(){
//..
}
}