ローカルzipを解凍し、データ更新UIを読み込む
4691 ワード
今日1つの需要に出会って、バックグラウンドは私达に1つのアイコンと色のzipをあげて、私达のフロントエンドで使うアイコンと色の配置をすべてバックグラウンドから読み取って、后で调整しやすいようにします.アイコンや全体の色を変えるには、バックグラウンドでzipバージョンを直接変更するとiosやAndroidが更新され、フロントエンドで修正する必要がなくなり、一労永逸といえます.多くの問題を解決した.では、最初の問題は、ローカルzipを解凍してデータを取得することです.ここにdemoと書いてあります.記録しておきます.
まず、インベントリファイルに権限を追加します.
次にzipツールクラスを作成します.
Java統合zipツールを使用して解凍します.1つ目の方法は、解凍して1つのパスに保存することであり、2つ目の方法は、解凍後のデータを読み取ることです.ここのdemoは1枚の画像なので、BitmapFactoryを使っています
重要な部分がくっついています.
まず、インベントリファイルに権限を追加します.
次にzipツールクラスを作成します.
public class ZipFloderUtil {
/**
* . zipFile folderPath .
*
* @throws Exception
*/
public static void upZipFile(String zipFile, String folderPath)
throws ZipException, IOException {
ZipFile zfile = new ZipFile(zipFile);
Enumeration zList = zfile.entries();
ZipEntry ze = null;
byte[] buf = new byte[1024];
while (zList.hasMoreElements()) {
ze = (ZipEntry) zList.nextElement();
if (ze.isDirectory()) {
Log.d("upZipFile", "ze.getName() = " + ze.getName());
String dirstr = folderPath + ze.getName();
// dirstr.trim();
dirstr = new String(dirstr.getBytes("8859_1"), "GB2312");
Log.d("upZipFile", "str = " + dirstr);
File f = new File(dirstr);
f.mkdir();
continue;
}
Log.d("upZipFile", "ze.getName() = " + ze.getName());
OutputStream os = new BufferedOutputStream(new FileOutputStream(
getRealFileName(folderPath, ze.getName())));
InputStream is = new BufferedInputStream(zfile.getInputStream(ze));
int readLen = 0;
while ((readLen = is.read(buf, 0, 1024)) != -1) {
os.write(buf, 0, readLen);
}
is.close();
os.close();
}
zfile.close();
Log.d("upZipFile", "finishssssssssssssssssssss");
}
/**
* , .
*
* @param baseDir
*
* @param absFileName
* , ZipEntry name
* @return java.io.File
*/
public static File getRealFileName(String baseDir, String absFileName) {
String[] dirs = absFileName.split("/");
File ret = new File(baseDir);
String substr = null;
if (dirs.length > 1) {
for (int i = 0; i < dirs.length - 1; i++) {
substr = dirs[i];
try {
// substr.trim();
substr = new String(substr.getBytes("8859_1"), "GB2312");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ret = new File(ret, substr);
}
Log.d("upZipFile", "1ret = " + ret);
if (!ret.exists())
ret.mkdirs();
substr = dirs[dirs.length - 1];
try {
// substr.trim();
substr = new String(substr.getBytes("8859_1"), "GB2312");
Log.d("upZipFile", "substr = " + substr);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ret = new File(ret, substr);
Log.d("upZipFile", "2ret = " + ret);
return ret;
}
return ret;
}
}
Java統合zipツールを使用して解凍します.1つ目の方法は、解凍して1つのパスに保存することであり、2つ目の方法は、解凍後のデータを読み取ることです.ここのdemoは1枚の画像なので、BitmapFactoryを使っています
String zipPath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "myfile.zip";
String filePath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "file";
imageView = (ImageView) findViewById(R.id.imageView);
try {
ZipFloderUtil.upZipFile(zipPath,filePath);
Bitmap bitmap = BitmapFactory.decodeFile(filePath+File.separator+"myskin/main.jpg");
imageView.setImageBitmap(bitmap);
} catch (IOException e) {
e.printStackTrace();
}
重要な部分がくっついています.
git :https://github.com/SingleShu/UnZip