Hi, I would like to use separator but the results come out were not what I expected.
I use
Tos = To.split(",");
for (int i = 0; i < Tos.length; i++)
{
System.out.println(Tos[i]);
}
I was using printwriter as well. I hope that in the file the result should look like this:
To:ll
To:ooo
To:pp
Instead of
To:ll,ooo,pp
Is anyone know what's the problem?

