Android程序解压缩zip文件,并加载显示解压后的文件内容

这篇博客演示了一个Android demo,它从SD卡中解压缩zip文件,然后使用WebView展示解压后HTML文件的内容。代码直接展示了实现过程,但未包含文件存在性检查和其他细节。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

刚做了个demo用于解压缩本地zip文件,并用webview显示其中的一个html文件,直接上代码,需要的朋友可以看看

public class ZipActivity extends Activity {
	private static final String TAG = "HelloXmlActivity";
	private WebView mWebView;  

	private static LinkedHashMap<String, String> widgetInfoMap = new LinkedHashMap<String, String>();

	//http://blog.youkuaiyun.com/com360/article/details/6618086
	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		String zipfile = "/sdcard/abc.zip";
		try {
			unzip(zipfile, "/sdcard/");//yangguangfu/wujiali/
			
			
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			
		}
		
		mWebView=(WebView)findViewById(R.id.web);
		mWebView.loadUrl("file:///sdcard/abc/aaa.html");//此处加载解压后的html内容

	}

	/*
	 * 这个是解压ZIP格式文件的方法
	 * 
	 * @zipFileName:是传进来你要解压的文件路径,包括文件的名字;
	 * 
	 * @outputDirectory:选择你要保存的路劲;
	 * 
	 */
	private void unzip(String zipFileName, String outputDirectory)
			throws Exception {
		ZipInputStream in = new ZipInputStream(new FileInputStream(zipFileName));
		ZipEntry z;
		String name = "";
		String extractedFile = "";
		int counter = 0;

		while ((z = in.getNextEntry()) != null) {
			name = z.getName();
			Log.d(TAG, "unzipping file: " + name);
			if (z.isDirectory()) {
				Log.d(TAG, name + "is a folder");
				// get the folder name of the widget
				name = name.substring(0, name.length() - 1);
				File folder = new File(outputDirectory + File.separator + name);
				folder.mkdirs();
				if (counter == 0) {
					extractedFile = folder.toString();
				}
				counter++;
				Log.d(TAG, "mkdir " + outputDirectory + File.separator + name);
			} else {
				Log.d(TAG, name + "is a normal file");
				File file = new File(outputDirectory + File.separator + name);
				file.createNewFile();
				// get the output stream of the file
				FileOutputStream out = new FileOutputStream(file);
				int ch;
				byte[] buffer = new byte[1024];
				// read (ch) bytes into buffer
				while ((ch = in.read(buffer)) != -1) {
					// write (ch) byte from buffer at the position 0
					out.write(buffer, 0, ch);
					out.flush();
				}
				out.close();
			}
		}

		in.close();

	}

	
}


其中我的abc.zip文件是放在sdcard中的,里面有2个文件,解压后生成一个abc文件夹,文件夹下是解压缩后的2个文件,我用一个webview直接指定加载了解压后的一个html文件,做的比较粗糙,省去了文件存在判断,扫描文件名、文件类型,main.xml文件也很简单,通过上面代码应该可以看出其中的控件,这里不再写xml布局文件了。


更多信息可参考下面文章:

加载html与js:

http://blog.youkuaiyun.com/com360/article/details/6618086

解压缩zip文件

http://www.oschina.net/code/snippet_4873_4142





评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值