Hi…all…
I have parsed a xml using xmlparser which holds japanese contents
eg:-
<starttime> 7月 31日 22時 33分</starttime> //月 31日 22時 33分(missing 7 from orginal content '7’月 31日 22時 33分)
<endtime> 8月 5日 22時 33分</endtime> //月 5日 22時 33分// “”
<price> 1,500 円</price> //月 // missing 1500…
but i am getting only the start time as ‘月 31日 22時 33分’
and endtime as ‘月 5日 22時 33分’…(missing 1st some letters)
but when i parse an xml which holds english contents i am getting full of its contents…
eg:-
<price> 1,500 yen </ price> //1,500 yen
<starttime> 7 Monday the 31st 22:33 </ starttime> //7 Monday the 31st 22:33
<endtime> 8 Monday the 5th 22:33 </ endtime> //8 Monday the 5th 22:33
why is it parsing like that ?? do u have any idea???