I know there is lots of topics for my question but I couldnt find helpful solution for my answer. I could connect to website and read line by line in Java, now here is my problem. I want to parse a specific info from a html page. This page includes 5-day weather forecast. for example the date of forecast tag is like this ;
//date of forecast
< th id="ctl00_mpBody_thmGun1" class="arkaTrh">19 April< /th >
//Min weather:
< td id="ctl00_mpBody_thmMin1" class="minS">8< /td>
//Max weather
< td id="ctl00_mpBody_thmMax1" class="maxS">17< /td>
second day and others tags continue like this,
< th id="ctl00_mpBody_thmGun2" class="arkaTrh">20 April< /th >
.
.
.
according these tags, I need to parse 19 April, 17 and 8.