Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.database.Cursor;

public class Main {
    public static String CursorToJson(Cursor cursor) {
        do {
            if (!cursor.moveToNext()) {
                return "";
            }
            int i = 0;
            while (i < cursor.getCount()) {
                cursor.getString(0);
                i++;
            }
        } while (true);
    }
}