Converting string with xml to list of objects in android
up vote
0
down vote
favorite
I created a webservice in Java where I return a list of 'categories' in xml format. I was able to retrieve this information, and it returns me a string in that format
<categories>
<category>
<id> 1 </id>
<description> Description 1</description>
</category>
<category>
<id> 2 </id>
<description> Description 2</description>
</category>
</categories>
I have an object that is referring to Category, how can I convert this string into an xml file or something of the genre to be able to load a list of categories?
public class category
private int id;
private String description;
public Categoria(int id, String description)
this.id= id;
this.description= description;
// gets sets
private void RetrieveCategories()
AcessaWsTask task = new AcessaWsTask();
String resultado = "";
try
resultado = task.execute("http://192.168.10.104:8080/WebWs/getCategories").get();
catch(Exception e)
resultado=e.getMessage();
txtTitulo.setText(resultado);
java android xml web-services
add a comment |
up vote
0
down vote
favorite
I created a webservice in Java where I return a list of 'categories' in xml format. I was able to retrieve this information, and it returns me a string in that format
<categories>
<category>
<id> 1 </id>
<description> Description 1</description>
</category>
<category>
<id> 2 </id>
<description> Description 2</description>
</category>
</categories>
I have an object that is referring to Category, how can I convert this string into an xml file or something of the genre to be able to load a list of categories?
public class category
private int id;
private String description;
public Categoria(int id, String description)
this.id= id;
this.description= description;
// gets sets
private void RetrieveCategories()
AcessaWsTask task = new AcessaWsTask();
String resultado = "";
try
resultado = task.execute("http://192.168.10.104:8080/WebWs/getCategories").get();
catch(Exception e)
resultado=e.getMessage();
txtTitulo.setText(resultado);
java android xml web-services
have a look at JAXP.
– Heri
Nov 11 at 10:53
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I created a webservice in Java where I return a list of 'categories' in xml format. I was able to retrieve this information, and it returns me a string in that format
<categories>
<category>
<id> 1 </id>
<description> Description 1</description>
</category>
<category>
<id> 2 </id>
<description> Description 2</description>
</category>
</categories>
I have an object that is referring to Category, how can I convert this string into an xml file or something of the genre to be able to load a list of categories?
public class category
private int id;
private String description;
public Categoria(int id, String description)
this.id= id;
this.description= description;
// gets sets
private void RetrieveCategories()
AcessaWsTask task = new AcessaWsTask();
String resultado = "";
try
resultado = task.execute("http://192.168.10.104:8080/WebWs/getCategories").get();
catch(Exception e)
resultado=e.getMessage();
txtTitulo.setText(resultado);
java android xml web-services
I created a webservice in Java where I return a list of 'categories' in xml format. I was able to retrieve this information, and it returns me a string in that format
<categories>
<category>
<id> 1 </id>
<description> Description 1</description>
</category>
<category>
<id> 2 </id>
<description> Description 2</description>
</category>
</categories>
I have an object that is referring to Category, how can I convert this string into an xml file or something of the genre to be able to load a list of categories?
public class category
private int id;
private String description;
public Categoria(int id, String description)
this.id= id;
this.description= description;
// gets sets
private void RetrieveCategories()
AcessaWsTask task = new AcessaWsTask();
String resultado = "";
try
resultado = task.execute("http://192.168.10.104:8080/WebWs/getCategories").get();
catch(Exception e)
resultado=e.getMessage();
txtTitulo.setText(resultado);
java android xml web-services
java android xml web-services
asked Nov 10 at 19:58
Emiry Mirella
1026
1026
have a look at JAXP.
– Heri
Nov 11 at 10:53
add a comment |
have a look at JAXP.
– Heri
Nov 11 at 10:53
have a look at JAXP.
– Heri
Nov 11 at 10:53
have a look at JAXP.
– Heri
Nov 11 at 10:53
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242877%2fconverting-string-with-xml-to-list-of-objects-in-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
have a look at JAXP.
– Heri
Nov 11 at 10:53