如何在android中将游标对象转换为XML或JSON

时间:2014-05-03 03:59:12

标签: android xml json sqlite

是否有任何库可用于将Cursor对象转换为直接XML或JSON。

例如,我们有一个表有两列id,name。当我从DB获取游标对象时。使用循环游标我想将其转换为

<XML>
<id>1<id>
<name>xyz</name>
</XML>

提前致谢。

2 个答案:

答案 0 :(得分:2)

使用此:

JSONArray array = new JSONArray();
    if (cursor != null && cursor.getCount() > 0) {
        while (cursor.moveToNext()) {
            JSONObject object = new JSONObject();
            try {
                object.put("id", cursor.getString(0));
                object.put("name", cursor.getString(1));
                array.put(object);
            } catch (JSONException e) {
                e.printStackTrace();
            }

        }

如果您想创建XML数据而不是使用它:Link。希望它会对你有所帮助。

答案 1 :(得分:2)

让我们说我有一些名为“人”的表,其中有一些数据

id |名字|名字

1 |约翰| DOE

2 |简|史密斯

这是我的简单代码:

public String getRecords(String selectQuery){
    String recordSet = null;
    Cursor mCursor = database.rawQuery(selectQuery, null); 
    String[] colName = mCursor.getColumnNames();
   if (mCursor != null) {  

      recordSet = "{";
      mCursor.moveToFirst();

      do{
          StringBuilder sb = new StringBuilder();
          int columnsQty = mCursor.getColumnCount();
          for(int idx=0; idx<columnsQty; ++idx){
              sb.append(mCursor.getString(idx));
              if(idx<columnsQty-1){
                  sb.append(";");
              }
          }
          if(mCursor.getPosition()>0){
              recordSet +=",";
          }

          String row = formatRecords(colName, sb.toString());
          recordSet+= "\""+mCursor.getPosition()+"\":["+row+"]";

      }while(mCursor.moveToNext());

      recordSet += "}";

      return recordSet;


   }    
}
public String formatRecords(String[] colname, String rowData){
    String formatedData = null;
    String[] data = rowData.split(";");
    int colCount = colname.length;
    if(rowData !=null){
        formatedData = "{";
        for(int col=0; col<colCount; col++){
            if(col>0){
                formatedData += ", ";
            }
            formatedData += "\""+colname[col]+"\":\""+data[col]+"\"";
        }
        formatedData += "}";
    }
    Log.i(tag, formatedData);
    return formatedData

然后我将它用作

String data = getRecords("SELECT * FROM persons");

回报将如下:

{"0":[{"id":"1","name":"john","lastname":"Doe"}],"1":[{"id":"2","name":"jane","lastname":"Smith"}]}

无论如何,我将返回类型作为String用于通用目的。 :)谢谢。