他のプログラムを開けずに最新のアプリを直接インストールします.
元の問題はCSDNクイズチャンネルから来ました.より多くの解決案をご覧ください.http://ask.csdn.net/questions/1384
元の問題の説明:
ウェブサーバのバックグラウンドで24時間ごとにアプリケーションのバージョンをチェックします.更新が利用可能であれば、ユーザーに新しいアプリのダウンロードを促すことができます.
ソリューション:
まず、アプリのダウンロードが必要です.
元の問題の説明:
ウェブサーバのバックグラウンドで24時間ごとにアプリケーションのバージョンをチェックします.更新が利用可能であれば、ユーザーに新しいアプリのダウンロードを促すことができます.
Uri uri = Uri.parse(downloadURL);
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
startActivity(intent);
上のコードはユーザーのブラウザを開き、ダウンロードを開始します.ブラウザを開けたくないですが、アプリファイルをダウンロードする必要があります.または他のプログラムを開けずに最新のアプリを直接インストールします.どうやって実現しますかソリューション:
まず、アプリのダウンロードが必要です.
String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
File folder = new File(extStorageDirectory, "APPS");
folder.mkdir();
File file = new File(folder, "AnyName."+"apk");
try {
file.createNewFile();
} catch (IOException e1) {
e1.printStackTrace();
}
/**
* APKURL is your apk file url(server url)
*/
DownloadFile("APKURL", file);
DownloadFile関数はpublic void DownloadFile(String fileURL, File directory) {
try {
FileOutputStream f = new FileOutputStream(directory);
URL u = new URL(fileURL);
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
//c.setDoOutput(true);
c.connect();
InputStream in = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = in.read(buffer)) > 0) {
f.write(buffer, 0, len1);
}
f.close();
} catch (Exception e) {
System.out.println("exception in DownloadFile: --------"+e.toString());
e.printStackTrace();
}
アプリファイルをダウンロードして、下記のコードを追加します.Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/APPS/" + "AnyName.apk")), "application/vnd.android.package-archive");
startActivity(intent);
manifestファイルに権限を追加します.<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>