![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java JavaScript Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) Iterate Through Matching ZIP Entries Using EntryMatching and ZipEntry.GetNextMatchSee more Zip ExamplesThis example demonstrates how to iterate through ZIP entries matching a wildcard pattern using:
The wildcard character The example searches for all entries beneath the Suppose the ZIP archive contains: The wildcard pattern: Matches: Note that ZIP archives may optionally contain separate directory entries. Therefore, the first matching entry may be the directory entry
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); boolean success = false; CkZip zip = new CkZip(); // Open an existing ZIP archive. success = zip.OpenZip("c:/temp/sample.zip"); if (success == false) { Log.i(TAG, zip.lastErrorText()); return; } // ------------------------------------------------------------ // Find the first ZIP entry matching the wildcard pattern: // // docs/* // // Matching is performed against the full stored ZIP path. // CkZipEntry entry = new CkZipEntry(); success = zip.EntryMatching("docs/*",entry); if (success == false) { Log.i(TAG, "No matching entries found."); zip.CloseZip(); return; } // ------------------------------------------------------------ // Iterate through all matching entries. // // GetNextMatch updates the same ZipEntry object so that // it represents the next matching entry. // while ((success == true)) { if (entry.get_IsDirectory() == true) { Log.i(TAG, "[Directory] " + entry.fileName()); } else { Log.i(TAG, "[File] " + entry.fileName()); } // Advance to the next matching entry. success = entry.GetNextMatch("docs/*"); } zip.CloseZip(); Log.i(TAG, "Done."); } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.