Как использовать Retrofit и SimpleXML вместе при загрузке и анализе XML-файла с сайта?
Я только начал работать с Retrofit. Я работаю над проектом, который использует SimpleXML. Может ли кто-нибудь предоставить мне пример, в котором один получает XML с сайта, например http://www.w3schools.com/xml/simple.xml
3 ответов
вы создадите интерфейс как новый класс в своем проекте:
public interface ApiService {
@GET("/xml/simple.xml")
YourObject getUser();
}
тогда в своей деятельности вы будете называть следующее:
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint("http://www.w3schools.com")
.setConverter(new SimpleXmlConverter())
.build();
ApiService apiService = restAdapter.create(ApiService.class);
YourObject object = apiService.getXML();
чтобы правильно получить ваши библиотеки, в вашей сборке.файл Gradle вам нужно сделать следующее:
configurations {
compile.exclude group: 'stax'
compile.exclude group: 'xpp3'
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.squareup.retrofit:retrofit:1.6.1'
compile 'com.mobprofs:retrofit-simplexmlconverter:1.1'
compile 'org.simpleframework:simple-xml:2.7.1'
compile 'com.google.code.gson:gson:2.2.4'
}
затем вам нужно указать YourObject и добавить к нему аннотации в соответствии со структурой xml-файла
@Root(name = "breakfast_menu")
public class BreakFastMenu {
@ElementList(inline = true)
List<Food> foodList;
}
@Root(name="food")
public class Food {
@Element(name = "name")
String name;
@Element(name = "price")
String price;
@Element(name = "description")
String description;
@Element(name = "calories")
String calories;
}
import java.util.ArrayList;
import java.util.List;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Root;
@Root(name = "breakfast_menu")
public class BrakfastMenu
{
@ElementList(inline = true)
protected List<Food> food;
public List<Food> getConfigurations()
{
if (food == null)
{
food = new ArrayList<Food>();
}
return this.food;
}
public void setConfigurations(List<Food> configuration)
{
this.food = configuration;
}
}
вот как это сделать с Ретрофит 2.
сначала вам нужен интерфейс, например (аннотации заголовков необязательны):
public interface ApiService
{
@GET("xml/simple.xml")
@Headers({"Accept: application/xml",
"User-Agent: Retrofit-Sample-App"})
Call<BreakfastMenu> getBreakfastMenu();
}
аннотированные POJOs для XML такие же, как и в других ответах.
тогда вам нужно сделать запрос к серверу :
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://www.w3schools.com/")
.addConverterFactory(SimpleXmlConverterFactory.create())
.build();
ApiService apiService = retrofit.create(ApiService.class);
Call<BreakfastMenu> call = apiService.getBreakfastMenu();
Response<BreakfastMenu> response = call.execute();
// response.code() == 200
BreakfastMenu breakfastMenu = response.body();
необходимые библиотеки:
- модернизация 2.3.0
- okhttp 3.8.0
- конвертер-simplexml 2.3.0
- простой-xml 2.7.1
- Java 7
источник на моем GitHub