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>    ▸ fine.. </h4>  ...........................   <body> <h3 style="color:red;"> 100. you? </h3> <h4>    ▸ 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
Post a Comment