替换友盟更新的小demo

2024-05-23 11:08
文章标签 更新 替换 demo 友盟

本文主要是介绍替换友盟更新的小demo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

友盟更新将在2016-10-15停止更新

友盟更新将在2016-10-15停止更新,之前一直使用友盟更新的小伙伴们是不是正在忙着相应对策,
友盟更新替换友盟提供了两种更新替换方式,一个是使用推送将自己的新版本的下载链接推送到客户端,然后客户通过点击通知栏进行更新,这只是最简洁的处理方式,但是略显low,接下来就是第二种方法,
在闪屏界面请求服务器查询是否有新版本
大致思路
1.在闪屏界面,请求服务器
2.服务器返回服务器上面最新的版本的相关的信息,包含版本信息,描述信息,是否是强制更新……
3.获取本地的已经安装的软件的版本号,与服务器返回的版本号进行比对
4.如果本地的版本号小于服务器,则说明需要更新
5.弹出对话框提示有新版本,询问用户是否更新
6.用户点击确定更新,开启更新服务,下载新版的APK
7.下载完成,安装APK,完成版本更新
这是开启的下载的服务的相关代码
package com.cheletong.gyz.service;import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;import android.annotation.SuppressLint;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.net.Uri;
import android.os.Environment;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.text.TextUtils;import com.cheletong.R;
import com.cheletong.activity.start.StartActivity;public class UpdateService extends Service {//标题  private int titleId = 0;private final static int DOWNLOAD_COMPLETE = 0;private final static int DOWNLOAD_FAIL = 1;//文件存储  private File updateDir = null;private File updateFile = null;//通知栏  private NotificationManager updateNotificationManager = null;private Notification updateNotification = null;//通知栏跳转Intent  private Intent updateIntent = null;private PendingIntent updatePendingIntent = null;private Notification.Builder builder;private String title = "你的项目名称";private String downLoadUrl;@Overridepublic IBinder onBind(Intent intent) {// TODO Auto-generated method stub  return null;}@Overridepublic void onCreate() {super.onCreate();}@Overridepublic int onStartCommand(Intent intent, int flags, int startId) {//获取传值  titleId = intent.getIntExtra("titleId", 0);downLoadUrl = intent.getStringExtra("url");// Toast.makeText(this,"下载地址:" + downLoadUrl,Toast.LENGTH_SHORT).show();// 如果获取到了一个空的url 就将服务器更新写死的URL设置给他if(TextUtils.isEmpty(downLoadUrl)){// TODO  如果获取不到下载的url 就将存放apk更新的url直接设置进来downLoadUrl = "http://42.121.113.46:8098/cheletong/apk/cheletong.apk";}//创建文件if (android.os.Environment.MEDIA_MOUNTED.equals(android.os.Environment.getExternalStorageState())) {updateDir = new File(Environment.getExternalStorageDirectory(), "app/download/");updateFile = new File(updateDir.getPath(), getResources().getString(titleId) + ".apk");}this.updateNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);builder = new Notification.Builder(this);builder.setSmallIcon(R.drawable.icon); //设置图标// builder.setTicker("显示第二个通知");// builder.setContentTitle("通知"); //设置标题// builder.setContentText("点击查看详细内容"); //消息内容// builder.setWhen(System.currentTimeMillis()); //发送时间// builder.setDefaults(Notification.DEFAULT_ALL); //设置默认的提示音,振动方式,灯光// builder.setAutoCancel(true);//打开程序后图标消失// Intent intent = new Intent(MainActivity.this, Center.class);// PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);// builder.setContentIntent(pendingIntent);// Notification notification1 = builder.build();// notificationManager.notify(124, notification1); // 通过通知管理器发送通知this.updateNotification = builder.getNotification();//设置下载过程中,点击通知栏,回到主界面  updateIntent = new Intent(this, StartActivity.class);updatePendingIntent = PendingIntent.getActivity(this, 0, updateIntent, 0);//设置通知栏显示内容  // updateNotification.icon = R.mipmap.ic_launcher;// updateNotification.tickerText = "开始下载";// updateNotification.setLatestEventInfo(this,"上海地铁","0%",updatePendingIntent);builder.setTicker("开始下载");builder.setContentTitle(title); //设置标题builder.setContentText("0%"); //消息内容// builder.setContentIntent(updatePendingIntent);this.updateNotification = builder.getNotification();//发出通知  updateNotificationManager.notify(0, updateNotification);//开启一个新的线程下载,如果使用Service同步下载,会导致ANR问题,Service本身也会阻塞  new Thread(new updateRunnable()).start();//这个是下载的重点,是下载的过程  return super.onStartCommand(intent, flags, startId);}private Handler updateHandler = new Handler() {@Overridepublic void handleMessage(Message msg) {switch (msg.what) {case DOWNLOAD_COMPLETE:updateNotification.flags |= updateNotification.FLAG_AUTO_CANCEL;//点击安装PendingIntent  Uri uri = Uri.fromFile(updateFile);Intent installIntent = new Intent(Intent.ACTION_VIEW);installIntent.setDataAndType(uri, "application/vnd.android.package-archive");updatePendingIntent = PendingIntent.getActivity(UpdateService.this, 0, installIntent, 0);updateNotification.defaults = Notification.DEFAULT_SOUND;//铃声提醒   // updateNotification.setLatestEventInfo(UpdateService.this, "上海地铁", "下载完成,点击安装。", updatePendingIntent);builder.setTicker("下载完成");builder.setContentTitle(title); //设置标题builder.setContentText("下载完成,点击安装。"); //消息内容builder.setContentIntent(updatePendingIntent);builder.setAutoCancel(true);//打开程序后图标消失updateNotification = builder.getNotification();updateNotificationManager.notify(0, updateNotification);//停止服务  stopService(updateIntent);break;case DOWNLOAD_FAIL://下载失败  // updateNotification.setLatestEventInfo(UpdateService.this, "上海地铁", "下载完成,点击安装。", updatePendingIntent);builder.setTicker("下载失败");builder.setContentTitle(title); //设置标题builder.setContentText("下载失败..."); //消息内容// builder.setContentIntent(updatePendingIntent);builder.setAutoCancel(true);//打开程序后图标消失updateNotification = builder.getNotification();updateNotificationManager.notify(0, updateNotification);break;default:stopService(updateIntent);}}};class updateRunnable implements Runnable {Message message = updateHandler.obtainMessage();public void run() {message.what = DOWNLOAD_COMPLETE;try {//增加权限<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">;  if (!updateDir.exists()) {updateDir.mkdirs();}if (!updateFile.exists()) {updateFile.createNewFile();}//下载函数,以QQ为例子  //增加权限<uses-permission android:name="android.permission.INTERNET">;  long downloadSize = downloadUpdateFile("http://softfile.3g.qq.com:8080/msoft/179/1105/10753/MobileQQ1.0(Android)_Build0198.apk", updateFile);// TODO 设置下载的连接为从之前页面解析万json之后获取到的url// long downloadSize = downloadUpdateFile(downLoadUrl, updateFile);if (downloadSize > 0) {//下载成功  updateHandler.sendMessage(message);// 下载完成之后自动安装应用Intent intent = new Intent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setAction(android.content.Intent.ACTION_VIEW);intent.setDataAndType(Uri.fromFile(updateFile),"application/vnd.android.package-archive");startActivity(intent);}} catch (Exception ex) {ex.printStackTrace();message.what = DOWNLOAD_FAIL;//下载失败  updateHandler.sendMessage(message);}}}@SuppressLint("NewApi")public long downloadUpdateFile(String downloadUrl, File saveFile) throws Exception {//这样的下载代码很多,我就不做过多的说明  int downloadCount = 0;int currentSize = 0;long totalSize = 0;int updateTotalSize = 0;HttpURLConnection httpConnection = null;InputStream is = null;FileOutputStream fos = null;try {URL url = new URL(downloadUrl);httpConnection = (HttpURLConnection) url.openConnection();httpConnection.setRequestProperty("User-Agent", "PacificHttpClient");if (currentSize > 0) {httpConnection.setRequestProperty("RANGE", "bytes=" + currentSize + "-");}httpConnection.setConnectTimeout(10000);httpConnection.setReadTimeout(20000);updateTotalSize = httpConnection.getContentLength();if (httpConnection.getResponseCode() == 404) {throw new Exception("fail!");}is = httpConnection.getInputStream();fos = new FileOutputStream(saveFile, false);byte buffer[] = new byte[4096];int readsize = 0;while ((readsize = is.read(buffer)) > 0) {fos.write(buffer, 0, readsize);totalSize += readsize;//为了防止频繁的通知导致应用吃紧,百分比增加10才通知一次  if ((downloadCount == 0) || (int) (totalSize * 100 / updateTotalSize) - 10 > downloadCount) {downloadCount += 10;// updateNotification.setLatestEventInfo(UpdateService.this, "正在下载", (int) totalSize * 100 / updateTotalSize + "%", updatePendingIntent);builder.setTicker("正在下载");builder.setContentTitle(title); //设置标题builder.setProgress(100, (int) totalSize * 100 / updateTotalSize + 9, false);builder.setContentText("当前下载进度:"+(int) totalSize * 100 / updateTotalSize + "%"); //消息内容// builder.setContentIntent(updatePendingIntent);updateNotification = builder.getNotification();updateNotificationManager.notify(0, updateNotification);}}} finally {if (httpConnection != null) {httpConnection.disconnect();}if (is != null) {is.close();}if (fos != null) {fos.close();}}return totalSize;}}  
这是弹出是否更新的对话框的相关代码

……比较乱,直接上传demo吧
下载地址:http://download.csdn.net/detail/u010838785/9640176

这篇关于替换友盟更新的小demo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/996307

相关文章

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

如何将Tomcat容器替换为Jetty容器

《如何将Tomcat容器替换为Jetty容器》:本文主要介绍如何将Tomcat容器替换为Jetty容器问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Tomcat容器替换为Jetty容器修改Maven依赖配置文件调整(可选)重新构建和运行总结Tomcat容器替

MySQL新增字段后Java实体未更新的潜在问题与解决方案

《MySQL新增字段后Java实体未更新的潜在问题与解决方案》在Java+MySQL的开发中,我们通常使用ORM框架来映射数据库表与Java对象,但有时候,数据库表结构变更(如新增字段)后,开发人员可... 目录引言1. 问题背景:数据库与 Java 实体不同步1.1 常见场景1.2 示例代码2. 不同操作

一文详解SQL Server如何跟踪自动统计信息更新

《一文详解SQLServer如何跟踪自动统计信息更新》SQLServer数据库中,我们都清楚统计信息对于优化器来说非常重要,所以本文就来和大家简单聊一聊SQLServer如何跟踪自动统计信息更新吧... SQL Server数据库中,我们都清楚统计信息对于优化器来说非常重要。一般情况下,我们会开启"自动更新

C#实现添加/替换/提取或删除Excel中的图片

《C#实现添加/替换/提取或删除Excel中的图片》在Excel中插入与数据相关的图片,能将关键数据或信息以更直观的方式呈现出来,使文档更加美观,下面我们来看看如何在C#中实现添加/替换/提取或删除E... 在Excandroidel中插入与数据相关的图片,能将关键数据或信息以更直观的方式呈现出来,使文档更

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

Linux Mint Xia 22.1重磅发布: 重要更新一览

《LinuxMintXia22.1重磅发布:重要更新一览》Beta版LinuxMint“Xia”22.1发布,新版本基于Ubuntu24.04,内核版本为Linux6.8,这... linux Mint 22.1「Xia」正式发布啦!这次更新带来了诸多优化和改进,进一步巩固了 Mint 在 Linux 桌面

SpringCloud配置动态更新原理解析

《SpringCloud配置动态更新原理解析》在微服务架构的浩瀚星海中,服务配置的动态更新如同魔法一般,能够让应用在不重启的情况下,实时响应配置的变更,SpringCloud作为微服务架构中的佼佼者,... 目录一、SpringBoot、Cloud配置的读取二、SpringCloud配置动态刷新三、更新@R

Ubuntu 24.04 LTS怎么关闭 Ubuntu Pro 更新提示弹窗?

《Ubuntu24.04LTS怎么关闭UbuntuPro更新提示弹窗?》Ubuntu每次开机都会弹窗提示安全更新,设置里最多只能取消自动下载,自动更新,但无法做到直接让自动更新的弹窗不出现,... 如果你正在使用 Ubuntu 24.04 LTS,可能会注意到——在使用「软件更新器」或运行 APT 命令时,