我想在Android应用程序和服务器之间同步数据(如db记录,媒体)。如果你看过Evernote或类似的应用程序,你肯定能理解我的意思。

我有一些问题(假设我们想要同步DB记录):

Every user has a part of server space for himself (such as Evernote or Dropbox). Maybe the user creates new records by cellphone and creates new records in server. How can I match these records together? If there are records with same ID What algorithms do you suggest me? Except JSON, Are there any way for send data between cellphone device and server? If SyncAdapter and ContentProvider can solve my problems, please explain exactly for me. (If you could offer some samples or tutorials to me OR Any advice or keywords to help broaden/guide my search would be appreciated as well).


当前回答

实现这一点的一种方法是让服务器端应用程序等待数据。可以使用Java中的HttpRequest对象发送数据,也可以编写自己的TCP/IP数据传输实用程序。可以使用JSON格式或您认为合适的任何其他格式发送数据。此外,如果数据包含敏感信息,则可以在发送到服务器之前进行加密。所有服务器应用程序所要做的就是等待httprequest进入并解析数据并将其存储在你想要的任何地方。

其他回答

我建议使用类似于Hessian的二进制web服务协议。它工作得很好,他们确实有一个android实现。它可能有点重,但取决于您正在构建的应用程序。希望这能有所帮助。

如果我们想想今天,公认的答案太陈旧了。正如我们所知道的,我们有很多新的库可以帮助你制作这种类型的应用程序。

你应该学习以下话题,这对你一定有帮助:

SyncAdapter:应用程序中的同步适配器组件封装了在设备和服务器之间传输数据的任务代码。基于你在应用程序中提供的调度和触发器,同步适配器框架运行同步适配器组件中的代码。 Realm: Realm是一个移动数据库:SQLite和Core Data的替代品。 为Android和Java改进类型安全的HTTP客户端。必须学会一种聪明的方法来使用改造

你的数据库同步逻辑是:如何同步Android手机上的SQLite数据库和服务器上的MySQL数据库?

祝所有新学员好运。:)

@Grantismo提供了一个很好的整体解释。如果你想知道谁实际上在做这些事情,我建议你看看谷歌是如何为谷歌IO应用程序的2014年(它总是值得深入研究这些应用程序的源代码,他们发布。这里有很多值得学习的地方)。

这里有一篇关于它的博客文章:http://android-developers.blogspot.com.br/2014/09/conference-data-sync-gcm-google-io.html

从本质上讲,在应用端:GCM用于发送信号,同步适配器用于数据获取,并与内容提供者进行正确的对话,这将使事情持久(是的,它将DB与应用程序的其他部分直接访问隔离开来)。

另外,如果你想看一下2015年的代码:https://github.com/google/iosched

我将试图通过解决更大的问题来回答你的所有问题:我如何在web服务器和android应用程序之间同步数据?


在你的web服务器和android应用程序之间同步数据需要你的android设备上的几个不同的组件。

持久性存储:

这就是你的手机如何存储它从网络服务器接收到的数据。实现这一点的一种可能的方法是编写自己的自定义ContentProvider,由Sqlite数据库支持。可以在这里找到内容提供者的一个不错的教程:http://thinkandroid.wordpress.com/2010/01/13/writing-your-own-contentprovider/

ContentProvider定义了一个与存储数据交互的一致接口。如果您需要,它还允许其他应用程序与您的数据进行交互。在你的ContentProvider的背后可以是一个Sqlite数据库,一个缓存,或任何任意的存储机制。

虽然我肯定会推荐使用ContentProvider和Sqlite数据库,但你也可以使用任何你想要的基于java的存储机制。

数据交换格式:

这是你用来在你的web服务器和android应用程序之间发送数据的格式。现在最流行的两种格式是XML和JSON。在选择格式时,应该考虑可用的序列化库类型。我知道有一个很棒的json序列化库,名为gson: https://github.com/google/gson,尽管我确信也有类似的XML库。

同步服务

You'll want some sort of asynchronous task which can get new data from your server and refresh the mobile content to reflect the content of the server. You'll also want to notify the server whenever you make local changes to content and want to reflect those changes. Android provides the SyncAdapter pattern as a way to easily solve this pattern. You'll need to register user accounts, and then Android will perform lots of magic for you, and allow you to automatically sync. Here's a good tutorial: http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-1/


至于如何识别记录是否相同,通常你会创建具有唯一id的项目,并将其存储在android设备和服务器上。你可以用它来确保你引用的是同一个引用。此外,您可以存储像“updated_at”这样的列属性,以确保始终获得最新的数据,或者不会意外地重写新写入的数据。

@Grantismo给出了一个很好的Android同步组件的概述。

SyncManagerAndroid库提供了一个简单的双向同步实现来插入Android同步框架(AbstractThreadedSyncAdapter.OnPerformSync)。

https://github.com/sschendel/SyncManagerAndroid