我想将Sugar Orm数据库发送到服务器,已经阅读了send a file in Android from a mobile device to server using http和Location of sqlite database on the device,但是我不知道如何获取Sugar Orm数据库的路径并将其作为文件发送,我不想将其作为json发送,只需将其作为文件发送。谁能告诉我如何将orm数据库发送到服务器以及sugar orm的默认路径是什么?
答案 0 :(得分:0)
糖orm基于sqlite,因此糖数据库的路径与sqllite相同。 要获取数据库路径,可以使用:
Context context = this; // for Activity, or Service.
String dbname = "mydb.db";
Path dbpath = context.getDatabasePath(dbname);
路径类似于:
/data/data/com.me.myapp/databases/mydb.db