sparql 쿼리로 DBpedia에서 json 객체를 deserialize하는 데 문제가 있습니다. 는 내가 객체 클래스 생성하기 위해이 도구를 직렬화하는 GSON를 사용하여 사용하고 있습니다 : jsongen.byingtondesign.com를gson 오류로 SPARQL 쿼리에서 json 객체를 비 직렬화
SPARQL 쿼리 URL의 JSON 출력 : http://goo.gl/b4oF1
나 : http://labs.tedux.com/sparqlDONE.json
난 안드로이드 SDK 내부에서 생성 된 클래스를 사용할 때 내가 이것 때문에 그들 중 하나에 오류가 발생했습니다 : 그래서
{
type: "literal",
xml:lang: "en",......
내가 렘 이 xml : lang 클래스에서하지만 내가 gson에 의해 개체를 deserialize하려고 할 때 전체 json 개체 deserialized 설명 클래스를 기대했다. deserialize 할 수있는 아이디어가 있습니까 ??
설명] 클래스 :
import java.util.List;
public class Description{
private String type;
private String value;
private String xml:lang;
public String getType(){
return this.type;
}
public void setType(String type){
this.type = type;
}
public String getValue(){
return this.value;
}
public void setValue(String value){
this.value = value;
}
public String getXml:lang(){
return this.xml:lang;
}
public void setXml:lang(String xml:lang){
this.xml:lang = xml:lang;
}
}