original
String is:
lfpdh,8256:8,64=8877,4;;6578;576;9444'87,U@Y%71(;876,HG\
if i wrote code and display every character of string
for (int i=0;i < str.length();i++)
{
a=str.charAt(i);
System.out.print(a);
}
RESULT is
lph85:,6=874;585694'7UY7(86H\
Why? How I get everycharacter of this String
(edited by Cindy to put space by < so it wouldn't be treated as html)
[This message has been edited by Cindy Glass (edited August 09, 2001).]