3

I have an output of HTML like this:

<input type='text' id='status' name='status' value='0'>
<input type='text' id='description' name='description' value='Success'>
<input type='text' id='COMPANY' name='COMPANY' value='201'>

and so on.

I would like to extract the id,name and value from this and convert them to JSON in java.

Edit: My JSPN output will look like

{"id": "status","name": "status", "value": "0"}

etc.

Ali Yucel Akgul
  • 1,101
  • 8
  • 27
  • 53

1 Answers1

1

just three steps

1.create a html Input element model which havs 3 properties: id,name,value.

2.extract values from the html file, you can use htmlparser and create a model instance using those values

3.convert model instance into json string.