編輯:關於Android編程
開發過程用到了zip壓縮包,寫了一個工具類,該類可以實現把字符串直接壓縮成zip格式,省去了寫入文件再壓縮的步驟:
/** * * @author shx * 壓縮和解壓縮工具 * */ public class ZipUtil { /** * 壓縮方法 * @param str 要壓縮的字符串 * @param path 路徑 * @throws IOException */ public static void compress(String str,String path) throws IOException { if (null == str || str.length() <= 0) { return; } FileOutputStream fileOutputStream = new FileOutputStream(path); GZIPOutputStream gzip = new GZIPOutputStream(fileOutputStream); gzip.write(str.getBytes("utf-8")); gzip.close( ); fileOutputStream.close(); } /** * 解壓縮 * @param context * @param path * @return */ public static String unCompress(Context context,String path) { try { File file = new File(path); if (!file.exists()) { return context.getResources().getString(R.string.FileNotExits); } ByteArrayOutputStream out = new ByteArrayOutputStream(); // 創建一個新的輸出流 FileInputStream fileInputStream = new FileInputStream(path); GZIPInputStream gzip = new GZIPInputStream(fileInputStream); byte[] buffer = new byte[256]; int n = 0; // 將未壓縮數據讀入字節數組 while ((n = gzip.read(buffer)) >= 0) { out.write(buffer, 0, n); } return out.toString("utf-8"); } catch (Exception e) { e.printStackTrace(); } return null; }
引言我們在android的APP開發中有時候會碰到提供一個選項列表供用戶選擇的需求,如在投票類型的項目中,我們提供一些主題給用戶選擇,每個主題有若干選項,用戶對這些主題的
什麼是XMLXML全稱為Extensible Markup Language, 意思是可擴展的標記語言,它是 SGML(標准通用標記語言)的一個子集。XML語法上和HTM
紅米pro和紅米note3哪個好?下面小編帶來了兩部手機的對比評測,一起來看看吧!紅米pro和紅米note3對比評測: 紅米pro介紹: 紅米pro采用
概述對於ListView有自帶的方法添加headerView及footerView,但是RecycleView僅僅只是維護緩存的View,本身並不處理內容顯示,都交給了R