Hey guys whatsup , this is your Aesthetic world. If you are Blogger then you have to know that, how to design your blog properly. There are so many tip and trick to design blogs, but some blogger did not have  an idea to design their blog. And the reason behind this is, they just start blogging. And in the starting beginners faces many problems. So dont worry guys, Today I give you some tips and trick. In this blog we are going to show you that, "how can you convert ZIP file into XML on your Android device."


What is ZIP file ?


ZIP is the most popular archive format widely used in Internet. Like other skills, ZIP files are also data containers. They can store one or more than one files in the compressed form. When you downloaded the ZIP file, then you need to unpack its contents to use it.
What is Zip file


What is XML file ?


An XML file is an Extensible Markup Language (EML) data file that used tags to define objects and object features. It is formatted such as an HTML document, perhaps it uses custom tags to define objects and the data within every object. XML files can be the thought of as a text-based database.
XML/EML files have become a standard way of storing & transferring many data between programs and over the Browser/Internet. Because they are formatted as text documents, they can be edited by the basic text editor.
What is XML file

How to convert ZIP File into XML File ?

 A ZIP file consists of any number of other files (like PDFs, DOCs, XMLs, etc.). It is intended to short their sizes by looking for the redundant pieces within them and then only storing every such redundant part once. And this is called as “compression”. There are also a another way for this sort of file. Nowadays the best of them tends to be things like RARs and 7Zs, they can produce smaller files by finding more redundancy in originals than the ZIP can do.
A XML file is a type of data format, and it is  called as serialization format. It is the way of storing data into some structure so that it can be received later by another program. It is very same sort of format used in web pages (like HTML). It is the mostly used for text only, since its format is accurately a text file which you can open and edit in something like Notepads. 
It is highly inefficient with lots of added tats about the data inside. It is also used for the express purpose of making it manually editable. Features of this include such formats as JSONs and YAMLs, these can still allow manual text based editing, but they are more efficient as they do not have such inordinate extra tats. 
There are other even more efficient ways too, though then they become binary files not manually editable, things like BSONs, Protocol Buffers.
Conversions between the two is not really possible, it would be the analogous to converting between food and roads - makes no sense. What you can do is place one of them within the other.

 E.g. you can include a XML file as one of the files within a ZIP. You can also include a ZIP file as one data element inside a XML by first converting it to ASCII through something like Base64 and then storing it into a “blob” field inside the XML. But that’s not converting it, it is only containing it.