Web サービスから JSON を取得し、C# mono for android (xamarin) で SQLite DB に入れる簡単な方法はありますか? それを行うにはいくつかの退屈な方法がありますが、私は素早くエレガントなものが欲しいです.
質問する
4659 次
3 に答える
1
注釈を使用するときにこれを処理するために、次のクラスを作成しました。これ@SerializedName
により、特定のフィールドを無視するためのサポートも追加されます。それが誰かを助けることを願っています。
import android.content.ContentValues;
import com.google.gson.annotations.SerializedName;
import java.lang.reflect.Field;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
public class ContentValuesWriter {
public static ContentValues objectToContentValues(Object o, Field... ignoredFields) {
try {
ContentValues values = new ContentValues();
//Will ignore any of the fields you pass in here
List<Field> fieldsToIgnore = Arrays.asList(ignoredFields);
for(Field field : o.getClass().getDeclaredFields()) {
field.setAccessible(true);
if(fieldsToIgnore.contains(field))
continue;
Object value = field.get(object);
if(value != null) {
//This part just makes sure the content values can handle the field
if(value instanceof Double || value instanceof Integer || value instanceof String || value instanceof Boolean
|| value instanceof Long || value instanceof Float || value instanceof Short) {
values.put(field.getAnnotation(SerializedName.class).value(), value.toString());
}
else if (value instanceof Date)
values.put(field.getName(), Constants.DATE_FORMAT_FULL.format((Date) value));
else
throw new IllegalArgumentException("value could not be handled by field: " + value.toString());
}
else
Print.log("value is null, so we don't include it");
}
return values;
} catch(Exception e) {
Print.exception(e);
throw new NullPointerException("content values failed to build");
}
}
}
日付形式と印刷機能だけで、アプリのカスタムであるいくつかのものを置き換える必要があります。
于 2015-03-26T18:59:29.283 に答える
0
I made a static class that will convert any object into contentvalues using reflection. I'm sure there's an equivalent way to do this in Java. Put your JSON objects into a class of some sort and this will convert all of the properties into contentvalues.
public static class Util
{
//suck all of the data out of a class and put it into a ContentValues object for use in SQLite Database stuff
public static ContentValues ReflectToContentValues(object o)
{
ContentValues cv = new ContentValues();
foreach (var props in o.GetType().GetProperties())
{
object val = props.GetValue(o, null);
//check if compatible with contentvalues (sbyte and byte[] are also compatible, but will you ever use them in an SQLite database?
if (props.CanRead && props.CanWrite && (val is double || val is int || val is string || val is bool || val is long || val is float || val is short))
{
cv.Put(props.Name, val.ToString());
Log.Info("CVLOOP", props.Name + ":" + val.ToString());
}
else if (val is DateTime)
cv.Put(props.Name, ((DateTime)val).ToString("yyyy-MM-dd HH:mm:ss"));
}
return cv;
}
}
于 2013-04-04T18:54:11.363 に答える