解决方案 »

  1.   

    行,我有不会的找你问,我是刚刚接触android都不咋懂
      

  2.   

    推荐ContentProvider,这个还可以实现动态查询数据库(ContentObsever).数据更新。
      

  3.   

    数据库后台做 Android前端向服务器请求数据 根据后台反馈的数据再更新UI界面
      

  4.   

    你好,我也是要做android的毕设,一起交流一下吧!
      

  5.   

    send message  to me,to help you do the graduation design, the price is cheaper and the time is fast。
      

  6.   

    send message  to me,to help you do the graduation design, the price is cheaper and the time is fast。
      

  7.   

    send message  to me,to help you do the graduation design, the price is cheaper and the time is fast。
      

  8.   

    send message  to me,to help you do the graduation design, the price is cheaper and the time is fast。你以为说英文我就不知道你在打广告
      

  9.   

    send message  to me,to help you do the graduation design, the price is cheaper and the time is fast。你以为说英文我就不知道你在打广告这特么都被你发现,,,
      

  10.   

    你做个毕设,就用mysql呗,还有你这个是全本地操作还是访问网络啊,不会是连接口都不需要吧,如果是本地的话那就用sqlite吧
      

  11.   

    send message  to me,to help you do the graduation design, the price is cheaper and the time is fast。你以为说英文我就不知道你在打广告这特么都被你发现,,,擦。我还以为你是个外国人呢。
      

  12.   

    1. 使用C/S模型,就是客户端,中间端,服务端。三层。
    你要做的定义好网络数据包的发送读取格式即可。说通俗点就是定义好发送数据和接收数据的结构体。客户端只向中间端连接,向中间端发送增删改查功能以及数据。中间端负责接收客户端的功能要求和数据。并且得到功能编号和功能数据进行整理特定的数据库增删该查指令发送给服务端,并且等待服务端操作结果返回在做不同的逻辑处理。服务端只需要接收中间端发送过来的数据,并且直接对接收的数据进行向数据库操作。(因为所有将数据转换成数据库能识别的数据都在中间端处理)数据库返回的结果直接提交给中间端,服务端不作处理。中间端得到服务端返回的数据库操作返回值后在进行处理向客户端返回是否操作成功还是其他的行为。-----
    这东西很好做。只需要将发送的数据包格式自己定义好就行了。
    客户端只需要画好界面,和基本的网络发送接收即可。不需要多余的功能中间端和服务端控制台就好了。至于安卓连接,也还是使用相同的格式数据包。向中间端发送功能请求然后在接收显示即可。不过要注意windows的和Android的内存数据排列方式不同。
    windows是以大尾方式对数据进行排解,安卓好像是以小尾方式对数据进行排列。----
    这东西看起来很难,实际搞明白了很好做的。楼主不要把东西想的太难了。