String s[];
try {
s=WinBundle.getStringArray("inside");
} catch ( Exception ex)
{
System.out.println(ex);
}
Suppose that WinBundle has two lines, each starts with "inside":
inside = one
inside = two
I expect to get a String array of {"one", "two"}. I am getting ClassCastException. What am I doing wrong? What does getStringArray() actually return ? What does it expect in the resource bundle ?