关于在app启动android上检查更新的新手问题

时间:2011-03-06 14:26:45

标签: android

我正在尝试以下代码。我想在应用程序启动时每天检查一次我的应用程序的更新版本。得到了http://www.androidsnippets.com/check-for-updates-once-a-day的代码。 我无法弄清楚的是,在行URL updateURL = new URL(“http://my.company.com/update”); http://mycompany.com/update指向的是什么?一个xml,txt或..文件。我尝试了一个只有最新版本的xml和txt文件,并将其命名为version.txt,versionCode.txt和.xml。

它只是不起作用,并且网址应该只是“http://mycompany.com/update”或扩展名,即“http://mycompany.com/update/version.txt”或其他内容。

提前致谢。

public class Test extends Activity {
private Handler mHandler;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.front);
    mHandler = new Handler();

    /* Get Last Update Time from Preferences */
    SharedPreferences prefs = getPreferences(0);
    lastUpdateTime =  prefs.getLong("lastUpdateTime", 0);

    /* Should Activity Check for Updates Now? */
    if ((lastUpdateTime + (24 * 60 * 60 * 1000)) < System.currentTimeMillis()) {

        /* Save current timestamp for next Check*/
        lastUpdateTime = System.currentTimeMillis();            
        SharedPreferences.Editor editor = getPreferences(0).edit();
        editor.putLong("lastUpdateTime", lastUpdateTime);
        editor.commit();        

        /* Start Update */            
        checkUpdate.start();
    }
}

/* This Thread checks for Updates in the Background */
private Thread checkUpdate = new Thread() {
    public void run() {
        try {
            URL updateURL = new URL("http://my.company.com/update");                
            URLConnection conn = updateURL.openConnection(); 
            InputStream is = conn.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(is);
            ByteArrayBuffer baf = new ByteArrayBuffer(50);

            int current = 0;
            while((current = bis.read()) != -1){
                 baf.append((byte)current);
            }

            /* Convert the Bytes read to a String. */
            final String s = new String(baf.toByteArray());         

            /* Get current Version Number */
            int curVersion = getPackageManager().getPackageInfo("your.app.id", 0).versionCode;
            int newVersion = Integer.valueOf(s);

            /* Is a higher version than the current already out? */
            if (newVersion > curVersion) {
                /* Post a Handler for the UI to pick up and open the Dialog */
                mHandler.post(showUpdate);
            }                
        } catch (Exception e) {
        }
    }
};

/* This Runnable creates a Dialog and asks the user to open the Market */ 
private Runnable showUpdate = new Runnable(){
       public void run(){
        new AlertDialog.Builder(Test.this)
        .setIcon(R.drawable.icon)
        .setTitle("Update Available")
        .setMessage("An update for is available!\\n\\nOpen Android Market and see the details?")
        .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {
                        /* User clicked OK so do some stuff */
                        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pname:your.app.id"));
                        startActivity(intent);
                }
        })
        .setNegativeButton("No", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {
                        /* User clicked Cancel */
                }
        })
        .show();
       }
};    

}

3 个答案:

答案 0 :(得分:4)

首先,这有点多余,因为Android Market会自动通知用户更新,但是,为了做到这一点,您需要一台服务器,在该服务器上放置一个txt文件,其中包含您的代码所看到的信息因为,在这种情况下,您的代码会查找版本代码。那段代码在这里:

int curVersion = getPackageManager().getPackageInfo("your.app.id", 0).versionCode;
int newVersion = Integer.valueOf(s);

然后你的应用程序必须将两者合并在一起,如果newVersion大于curVersion,则打开市场到你的应用程序页面,用户可以在其中更新它。

您发布的代码完成了所有这些,但为了更具体地回答您在网址中的问题,您需要将网址放入“currentVersion.txt文件”或文件名。

希望我帮忙!

答案 1 :(得分:1)

  1. 只要您可以从那里提供文件,实际网址就无关紧要。
  2. 查看代码,文件本身需要是一个text / plain(.txt)文件,其中包含应用程序的当前versionCode,没有尾随换行符。

答案 2 :(得分:1)

我发现此代码非常有用,但需要versionName,因此可以检查次要更新(即1.01) 改变了checkUpdate:

/* Get current Version Number */
String curVersionStr = getPackageManager().getPackageInfo("package id", 0).versionName;
float curVersion = Float.parseFloat(curVersionStr);
float newVersion = Float.parseFloat(s);

希望这有助于某人。