百度地图数据打包到APK中 解压初始化地图

1、res 目录下 创建 raw 文件夹

2、将 BaiduMapSDKNew\vmp 压缩成 map.zip 放到 raw 文件夹,不需要cache目录 压缩 BaiduMapSDKNew 文件夹

3、点击按钮或其它方式 将map.zip 解压到 files 目录

下面是解压代码

private void unZipMapCache(){
		try {

			InputStream is = fragmentActivity.getResources()
					.openRawResource(R.raw.map);
			ZipInputStream zis= new ZipInputStream(is);
			ZipEntry entry = null;
			while((entry = zis.getNextEntry()) != null){
				File file = new File(fragmentActivity.getExternalFilesDir(null),entry.getName());
                System.out.println("filename----"+entry.getName());
				if(entry.isDirectory()){
					file.mkdirs();
					continue;
				}else{
					file.createNewFile();
					OutputStream myOutput = new FileOutputStream(file);
					byte[] buffer = new byte[1024];
					int count;
					while ((count = zis.read(buffer)) != -1) {
						myOutput.write(buffer, 0, count);
					}
					myOutput.close();
				}
			}
			zis.close();
			is.close();

		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值