Content Retrieval and Display.
Hi,
I am reading an HTML file (HTML Source ) and getting an InputStream.
I convert the bytes in the InputStream into String and then parse it to extract information based on some match criteria.
My problem is that the retrieved content is not getting converted into string properly.
Characters like "=" and ' " ' (double quotes) in thr HTML file are not converted properly.They are displayed as "=3D" and "=22" in the retrieved String.
Is there any way i could convert the retrieved Bytes properly.
I tried Replace() method of the string to replace "=3D" and "=22" with proper representation of "=" and ' " '.
I also tried to pass the charset in the constructor of InputStreamReader but it didnt work.
Can some one please help me in this.
Its very Urgent
Regards
Saurabh

