Xar (Extensible Archive)
From Just Solve the File Format Problem
				
								
				(Difference between revisions)
				
																
				
				
								
				m (Jsummers moved page Xar to Xar (eXtensible ARchive): Too many formats named Xar)  | 
			m (Add Kaitai Struct schema)  | 
			||
| (4 intermediate revisions by 3 users not shown) | |||
| Line 3: | Line 3: | ||
|extensions={{ext|xar}}  | |extensions={{ext|xar}}  | ||
|pronom={{PRONOM|fmt/600}}  | |pronom={{PRONOM|fmt/600}}  | ||
| + | |kaitai struct=xar  | ||
}}  | }}  | ||
| − | :''  | + | :''For other "Xar" formats, see the [[Xar]] disambiguation page.''  | 
'''xar''' (eXtensible ARchive) is an open-source archive format which stores its directory information and other metadata in the form of [[XML]].  | '''xar''' (eXtensible ARchive) is an open-source archive format which stores its directory information and other metadata in the form of [[XML]].  | ||
| Line 22: | Line 23: | ||
** [http://code.google.com/p/xar/wiki/API_xar API documentation]  | ** [http://code.google.com/p/xar/wiki/API_xar API documentation]  | ||
* [[7-Zip]]  | * [[7-Zip]]  | ||
| + | * [[Unar]]  | ||
| + | * [https://github.com/apple-oss-distributions/xar xar]  | ||
| + | |||
| + | == Sample files ==  | ||
| + | * {{DexvertSamples|archive/xar}}  | ||
== Other links ==  | == Other links ==  | ||
Latest revision as of 17:36, 26 December 2024
- For other "Xar" formats, see the Xar disambiguation page.
 
xar (eXtensible ARchive) is an open-source archive format which stores its directory information and other metadata in the form of XML.
The file format starts with a short binary header (which begins with the "magic" sequence consisting of "xar!" expressed as a 32-bit integer made from the ASCII character representations (0x78617221) in network byte order (big-endian). This byte order is used for all multi-byte numbers in the binary portions of the file format.
After the header is the directory information and metadata in XML, using the UTF-8 character encoding.
The remainder of the file consists of the binary data of the archive contents, known as "The Heap".
Contents |