How can I fetch data from html page to json page in android? -


i have 1 html file called temp.html , contents like,

<html> <head> <title> hello </title> </head>  <body> <h3 style="color:red;"> 1. how </h3> <h4> &nbsp;&nbsp; &rtrif; fine.. </h4>  ...........................   <body> <h3 style="color:red;"> 100. you? </h3> <h4> &nbsp;&nbsp; &rtrif; jack smith.. </h4>  </body> </html> 

so, want have these 100+ question directly fetched json file, in temp.json file like,

[      {         "q":"1. how you",         "a":" fine.."      },  ...............................       {         "q":"100. you?",         "a":"i jack smith.."      } ] 

so, way want have json file.. can create json file manually, whenever update html file, have update json file, , 100+ questions, hard manage..

so, tell me how can fetch / convert json file html page..


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -