I have a string array selectCancel
with setter and getter methods, which is a checkbox in my form. I am trying to get the checked values and I am getting the above result when I print.
I tried the Arrays.toString()
method but it still prints the same.
I then did the following:
String checked = Arrays.toString(Employee.getSelectCancel());
I also tried with the Arrays.asList()
and Arrays.copyOf()
So, how do I read this string?