Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(PowerBuilder) Decompress Large Text File in Blocks

Decompresses a large text file in blocks, and compares the restored (decompressed) file with the original to make sure it's correct.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_Compress
integer li_Success
oleobject loo_Fac
string ls_OriginalPath
oleobject loo_FacSrc
oleobject loo_FacDest
integer li_BlockSize
integer li_NumBlocks
string ls_RestoredPath
string ls_DecompressedStr
integer i
integer li_BEqualContents

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// First, let's compress a text file.
// We'll then decompress in blocks, and compare the decompressed with the original file.

// Compress a text file:
loo_Compress = create oleobject
li_rc = loo_Compress.ConnectToNewObject("Chilkat_9_5_0.Compression")
if li_rc < 0 then
    destroy loo_Compress
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_Compress.Algorithm = "deflate"

li_Success = loo_Compress.CompressFile("qa_data/hamlet.xml","qa_data/hamlet_compressed.dat")
if li_Success <> 1 then
    Write-Debug loo_Compress.LastErrorText
    destroy loo_Compress
    return
end if

loo_Fac = create oleobject
li_rc = loo_Fac.ConnectToNewObject("Chilkat_9_5_0.FileAccess")

// Examine the uncompressed and compressed sizes:
ls_OriginalPath = "qa_data/hamlet.xml"
// Note: The FileSize method returns a signed 32-bit integer.  If the file is potentially larger than 2GB, call FileSizeStr instead to return
// the size of the file as a string, then convert to an integer value.
Write-Debug "uncompressed size: " + string(loo_Fac.FileSize(ls_OriginalPath))
Write-Debug "compressed size: " + string(loo_Fac.FileSize("qa_data/hamlet_compressed.dat"))

// Decompress in blocks..
loo_FacSrc = create oleobject
li_rc = loo_FacSrc.ConnectToNewObject("Chilkat_9_5_0.FileAccess")

loo_FacDest = create oleobject
li_rc = loo_FacDest.ConnectToNewObject("Chilkat_9_5_0.FileAccess")

loo_FacSrc.OpenForRead("qa_data/hamlet_compressed.dat")

// If we compress in 32K chunks, find out how many blocks there will be.
li_BlockSize = 32768
li_NumBlocks = loo_FacSrc.GetNumBlocks(li_BlockSize)

// Open an output file for the decompressed data.
ls_RestoredPath = "qa_output/hamlet_restored.xml"
li_Success = loo_FacDest.OpenForWrite(ls_RestoredPath)
if li_Success <> 1 then
    Write-Debug loo_FacDest.LastErrorText
    destroy loo_Compress
    destroy loo_Fac
    destroy loo_FacSrc
    destroy loo_FacDest
    return
end if

i = 0
do while i < li_NumBlocks
    loo_CompressedBytes = loo_FacSrc.ReadBlock(i,li_BlockSize)
    if i = 0 then
        ls_DecompressedStr = loo_Compress.BeginDecompressString(loo_CompressedBytes)
    else
        ls_DecompressedStr = loo_Compress.MoreDecompressString(loo_CompressedBytes)
    end if

    loo_FacDest.AppendText(ls_DecompressedStr,"utf-8")

    i = i + 1
loop

// At the very end, flush any remaining content, if any.
ls_DecompressedStr = loo_Compress.EndDecompressString()
loo_FacDest.AppendText(ls_DecompressedStr,"utf-8")

loo_FacSrc.FileClose()
loo_FacDest.FileClose()

// Examine the size of the restored file.
Write-Debug "restored size: " + string(loo_Fac.FileSize(ls_RestoredPath))

// Compare the contents of the original with the restored.
li_BEqualContents = loo_Fac.FileContentsEqual(ls_RestoredPath,ls_OriginalPath)
Write-Debug "Contents Equal: " + string(li_BEqualContents)


destroy loo_Compress
destroy loo_Fac
destroy loo_FacSrc
destroy loo_FacDest

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.