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
(PowerBuilder) Compress XML ContentDemonstrates how to compress the content of an XML node. Note: This does not compress the node's children, only the text content. The input XML, available at http://www.chilkatsoft.com/data/compress1.xml, is this: <root> <fox>This is content that will be compressed. 0The quick brown fox jumps over the lazy dog 1The quick brown fox jumps over the lazy dog 2The quick brown fox jumps over the lazy dog 3The quick brown fox jumps over the lazy dog 4The quick brown fox jumps over the lazy dog 5The quick brown fox jumps over the lazy dog 6The quick brown fox jumps over the lazy dog 7The quick brown fox jumps over the lazy dog 8The quick brown fox jumps over the lazy dog 9The quick brown fox jumps over the lazy dog <child1> <grandchild>This is not compressed.</grandchild> </child1> </fox> </root>
integer li_rc oleobject loo_Xml integer li_Success loo_Xml = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_Xml.ConnectToNewObject("Chilkat.Xml") if li_rc < 0 then destroy loo_Xml MessageBox("Error","Connecting to COM object failed") return end if // The sample input XML is available at http://www.chilkatsoft.com/data/compress1.xml li_Success = loo_Xml.LoadXmlFile("compress1.xml") if li_Success <> 1 then Write-Debug loo_Xml.LastErrorText destroy loo_Xml return end if // Navigate to the "fox" node, which is the 1st child: li_Success = loo_Xml.FirstChild2() // Zip compress the content: li_Success = loo_Xml.ZipContent() // Navigate back to the root: loo_Xml.GetRoot2() // Examine the new XML document: Write-Debug loo_Xml.GetXml() // This is the XML w/ the compressed content in Base64 encoded format: // <root> // <fox><![CDATA[lcvbEYIwFIThZ5ixh63A8QZqHzTA5UiiIQeTIGr1xhJ2Zp/++bYxNiKvV5/EJyTTJqzWOXSS4zQH // iVGG7aYsil1jBM/F9g90QVePm75xX6Y5Ql8S8lfg2u8Hg45/vyf9gfRH0p9IX5G+Jv2Z9BfSXwn/ // Aw== // ]]> // <child1> // <grandchild>This is not compressed.</grandchild> // </child1> // </fox> // </root> // Now uncompress and show that the original content was restored: li_Success = loo_Xml.FirstChild2() li_Success = loo_Xml.UnzipContent() loo_Xml.GetRoot2() Write-Debug loo_Xml.GetXml() destroy loo_Xml |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.