Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) Determine File Type from Binary Content of FileNote: This example requires Chilkat v9.5.0.64 or later. Many file types have "signatures" (leading bytes) that signify the type of file. It allows for programs to identify the likely type of file given the first few bytes contained within the file. This example shows how to identify a few common types files. For other file types, you can do a short bit of investigative work by examining the first few bytes of an sample file, and searching the Internet for information about the file type. Use this same technique for handling other file types that have leading "signature" bytes.
// 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); // Note: This example requires Chilkat v9.5.0.64 or later. // To identify a file by the first few bytes, we'll load a few bytes from the start // of the file, and then examine the bytes as both hex and quoted-printable. CkFileAccess fac = new CkFileAccess(); // A JPG file. CkBinData jpgData = new CkBinData(); fac.OpenForRead("qa_data/jpg/starfish.jpg"); // The the first 8 bytes of the JPG file. fac.FileReadBd(8,jpgData); fac.FileClose(); // JPG hex: FFD8FFE000104A46 // JPG qp: =FF=D8=FF=E0=00=10JF Log.i(TAG, "JPG hex: " + jpgData.getEncoded("hex")); Log.i(TAG, "JPG qp: " + jpgData.getEncoded("qp")); // A JPG begins with the following two bytes: 0xFF, 0xD8 // Your program can check to see if the hex string begins with "FFD8", or if the qp string begins with "=FF=D8". // ---------------------------------------- // A PNG file. CkBinData pngData = new CkBinData(); fac.OpenForRead("qa_data/png/anemone.png"); // The the first 8 bytes of the PNG file. fac.FileReadBd(8,pngData); fac.FileClose(); // PNG hex: 89504E470D0A1A0A // PNG qp: =89PNG=1A=0A Log.i(TAG, "PNG hex: " + pngData.getEncoded("hex")); Log.i(TAG, "PNG qp: " + pngData.getEncoded("qp")); // A PNG file begins with the byte 0x89, followed by the us-ascii bytes "PNG". // ---------------------------------------- // A PDF file. CkBinData pdfData = new CkBinData(); fac.OpenForRead("qa_data/pdf/fishing.pdf"); // The the first 8 bytes of the PDF file. fac.FileReadBd(8,pdfData); fac.FileClose(); // PDF hex: 255044462D312E33 // PDF qp: %PDF-1.3 Log.i(TAG, "PDF hex: " + pdfData.getEncoded("hex")); Log.i(TAG, "PDF qp: " + pdfData.getEncoded("qp")); // A PDF file begins with the us-ascii chars "%PDF" // ---------------------------------------- // A Zip file. CkBinData zipData = new CkBinData(); fac.OpenForRead("qa_data/zips/test.zip"); // The the first 8 bytes of the Zip file. fac.FileReadBd(8,zipData); fac.FileClose(); // PDF hex: 504B030414000000 // PDF qp: PK=03=04=14=00=00=00 Log.i(TAG, "PDF hex: " + zipData.getEncoded("hex")); Log.i(TAG, "PDF qp: " + zipData.getEncoded("qp")); // A Zip archive begins with the us-ascii chars "PK" followed by the bytes 0x03, 0x04. } 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-2024 Chilkat Software, Inc. All Rights Reserved.