XML Files: What They Are & How to Open Them

Download Now: 25 Free HTML & CSS Hacks
Jamie Juviler
Jamie Juviler

Published:

Unstructured data generated on the web is growing exponentially. The Worldwide IDC Global DataSphere Forecast predicts that in 2024 alone, 138,258 exabytes will be generated — and that is only expected to increase to 200,132 exabytes by 2026.

Man at computer working on xml files

That’s a lot of data.

This is where XML comes in handy. It’s one of the most popular and efficient ways of structuring, storing, and moving data online.

Download Now: 25 HTML & CSS Hacks [Free Guide]

Understanding this technology was a crucial addition to my website development tool belt, and in this post, I’ll share what I’ve learned with you.

Table of Contents

What is an XML File?

An XML file contains XML code and ends with the file extension “.xml”. It contains tags that define not only how the document should be structured but also how it should be stored and transported over the internet.

Let’s look at a basic example of an XML file below. You can also click here to view the file directly in your browser.

Screenshot examples of xml files

Image Source

As you can see, this file consists of plain text and tags. The plain text is shown in black and the tags are shown in green.

Plain text is the actual data being stored. In this example, the XML is storing student names as well as test scores associated with each student.

While plain text represents the data, tags indicate what the data is. Each tag represents a type of data, like “first name,” “last name,” or “score,” and tells the computer what to do with the plain text data inside of it. Tags aren’t supposed to be seen by users, only the software itself.

XML Hierarchy

Each instance of an XML tag is called an element. In an XML file, elements are arranged in a hierarchy, which means that elements can contain other elements.

The topmost element is called the “root” element and contains all other elements, which are called “child” elements.

In the example above, “studentsList” is the root element. It contains two “student” elements. Each “student” element contains the elements “firstName,” “lastName,” “scores,” etc. The beginning and end of each element are represented by a starting tag (e.g., “<firstName>”) and a closing tag (e.g., “</firstName>”), respectively.

Also, XML code is often formatted where each level of element is indented, as is true in my example. This makes the file easier for humans to read and does not affect how computers process the code.

Now, I will dive deeper into the purpose and history of this language below.

XML Language

XML, short for “eXtensible Markup Language,” was published by the World Wide Web Consortium (W3C) in 1998 to meet the challenges of large-scale electronic publishing. Since then, it has become one of the most widely used formats for sharing structured information among people, computers, and networks.

Since XML can be read and interpreted by people as well as computer software, it is known as human- and machine-readable.

The primary purpose of XML, however, is to store data in a way that can be easily read by and shared between software applications. Since its format is standardized, XML can be shared across systems or platforms, both locally and over the internet, and the recipient will still be able to parse the data.

It's important to understand that XML doesn’t do anything with the data other than store it, like a database. Another piece of software must be created or used to send, receive, store, or display the data.

At this point, you might be thinking XML sounds a lot like another markup language, the Hypertext Markup Language (HTML). I will explain the differences between these languages below.

Besides their purpose, there’s one other key difference between XML and HTML tags.

When programming in HTML, a developer must use tags from the HTML tag library, or a standardized set of tags. While you can do a lot with these tags, there is a limited number available. That means there are only so many ways you can structure content on a web page.

XML does not have this limitation, as there is no preset library of XML tags. Instead, developers can create an unlimited number of custom tags to fit their data needs. This extensive customization is the “X” in XML.

To create custom tags, a developer writes a Document Type Definition (DTD), which is XML’s version of a tag library. An XML file’s DTD is indicated at the top of the file, and tells the software what each tag means and what to do with it.

For instance, an XML file containing info for a reservation system might have a custom “<res_start>” tag to define a time when a reservation begins. By reading the DTD, a program processing this file will know what the code “<res_start>7:00 PM PST</res_start>” means, and can use the information within the tag accordingly. This could mean sending this data in a confirmation email or storing it in another database.

To summarize: An XML file is a file used to store data in the form of hierarchical elements. Data stored in XML files can be read by computer programs with the help of custom tags, which indicate the type of element. If you want to learn more, check out this helpful article that explores the differences between HTML and XML even more.

Let's take a look at some use cases for this extensible language below.

Here are the most common uses of XML today:

Transporting Digital Information

The text-based format of XML files makes them highly portable, and therefore widely used for transferring information between web servers. Certain APIs, namely SOAP APIs and REST APIs, send information to other applications packaged in XML files.

Web Searching

Since XML defines the type of information contained in a document, it's easier and more effective to search the web with than HTML, for example.

Let‘s say you want to search for songs by Taylor Swift. Using HTML, you’d likely get back search results that include interviews and articles that mention her songs. Using XML, search results would be restricted to songs only.

Computer Applications

XML files allow computer apps to easily structure and fetch the data that they need. After retrieving data from the file, programs can decide what to do with the data. This could mean storing in another database, using it in the program backend, or displaying it on the screen.

Additionally, some popular file formats are built with XML. Consider the Microsoft Office file extensions .docx (for Word documents), .xlsx (for Excel spreadsheets), and .pptx (for PowerPoint presentations). The “x” at the end of these file extensions stands for XML.

Websites and Web Apps

Websites and web apps can pull content for their pages from XML files. This is a common example of how the markup languages XML and HTML work together.

XML code modules might even appear within an HTML file in order to help display content on the page. This makes XML especially applicable to interactive websites and pages whose content changes dynamically. Depending on the user or screen size, an HTML file can choose to display only certain elements in the XML code, providing visitors with a personalized browsing experience.

Free Guide: 25 HTML & CSS Coding Hacks

Tangible tips and coding templates from experts to help you code better and faster.

  • Coding to Convention
  • Being Browser-Friendly
  • Minimizing Bugs
  • Optimizing Performance
Learn more

    Download Free

    All fields are required.

    You're all set!

    Click this link to access this resource at any time.

    How to Open an XML File

    Since XML files are text files, you can open them in a few different ways. When I am casually viewing XML files, I open them directly in my favorite browser. When I am completing a project that requires me to frequently view, edit, or reformat XML files, I use an online XML editor or a text editor on my computer.

    In this section, I’ll cover how to open XML files with each of these programs.

    How to Open XML Files With a Web Browser

    While I like to stick to my favorite browser, I can use any current web browser to read XML files right in the browser window. Like with the menu example from earlier, I can select an XML file from my device and choose to open it with my web browser. Here's how a file looks in Google Chrome:

    Screenshot of xml file opened in Chrome browser

    While the appearance of the text will differ by browser, I can easily parse the contents of the file, and also hide and reveal specific elements.

    If there’s an error in the file, the browser will tell me with an error window. Google Chrome will display an error message like the following:

    Screenshot of xml error message in browser

    Note that I can’t edit the file in the browser. To change the file itself, I’ll need to use a specialized tool.

    How to Open XML Files With an Online XML Editor

    I can use a free online text file editor to view my XML files, change their contents, or convert them to other file formats. I recommend Code Beautify’s XML Viewer for this purpose.

    In the tool, click Browse to upload a file from your computer. Once uploaded, you can edit the file on the left and view the hierarchy of the XML contents on the right.

    Screenshot of xml viewer code beautify

    Image Source

    Once finished editing, click Save & Share to create a fresh XML file.

    I like Code Beautify because it also offers many free conversion tools to convert my XML files to other popular data storage formats like JSON and CSV.

    How to Open XML Files With a Text Editor

    As with any text file, I can open XML files in any text editor. However, common editors like Notepad and Word probably won’t display the XML files with colors or indentation. This makes the files less readable, as seen in the example below.

    Screenshot of xml file in text editor

    I usually opt for a specialized text editor that will detect the .xml format and display my files accordingly. For PCs, Notepad++ is a popular option. For Macs, try Xmplify or Eclipse.

    Alternatively, I can use a simple text editor and apply indentation to my files with a free online XML formatter.

    If any of your systems implement XML files, they will almost certainly write all of these files for you. If you want to practice writing your own basic XML files, you can do so in a text editor.

    I’ll show you how to create an XML file below.

    1. Open your text editor of choice.

    I'll use Sublime Text for this demo since it's free and works on macOs, Linux, and Microsoft operating systems.

    Screenshot of step one of creating an xml file

    2. On the first line, write an XML declaration.

    This declaration tells the application running the file that the language is XML.

    Screenshot of step two of creating an xml file

    3. Set your root element below the declaration.

    Every XML file has one root element, which contains all other child elements. The root element is written below the declaration.

    Screenshot of step three of creating an xml file

    In this example file, “<root_element>” is the starting tag for the root element, and “</root_element>” is the closing element. All other elements will go between these tags.

    You can substitute “root_element” in both tags with a name relevant to the information you're storing.

    4. Add your child elements within the root element.

    Next, I’ll add the child elements between the starting and closing tag of the root element. I can also nest a child element within another child element.

    Like the root element, each child element needs a starting tag and a closing tag. After adding child tags, my file will look something like this:

    Screenshot of step four of creating an xml file

    Instances of “root_element”, “child_element”, and “Content” can be swapped with names that make more sense for your file.

    5. Review your file for errors.

    Time to review. Are there any missing closing tags? Any rogue ampersands? Does the document type declaration appear after the first element in the document? These are just a few possible errors.

    Notice that line 5 is highlighted below. That's because the closing tag of the “child_element_2” is missing a bracket.

    Screenshot of step five of creating an xml file

    6. Save your file with the .xml file extension.

    As said above, an XML file ends with the file extension “.xml” so make sure to save your file with that extension.

    Screenshot of step six of creating an xml file

    7. Test your file by opening it in the browser window.

    Finally, I will test that my file works by dragging and dropping it into a new browser tab or window.

    Screenshot of step seven of creating an xml file

    Frequently Asked Questions About XML Files

    Still have questions about XML files? No problem. Here are a few frequently asked questions about this type of file, along with the answers.

    Can I open an XML file in Excel?

    Yes. Open Excel and click File > Open. Locate the XML file on your computer and click Open. An XML file will look something like this in Excel:

    Screenshot of opening an xml file in excel

    Can I open an XML file in Word?

    Yes. Open Word and click File > Open. Locate the XML file on your computer and click Open. An XML file will look something like this in Word:

    Screenshot of opening an xml file in word

    How do I convert an XML file into a PDF?

    To convert an XML file into a PDF, you can use a free online tool like Convert XML to PDF online. Simply click the Choose File button, select the XML file from your computer, and click Open. Then click the Convert Now button.

    Screenshot of opening an xml file in pdf

    The PDF file will be ready to view or download within a few seconds.

    How do I recover an XML file?

    Whether you‘ve accidentally deleted an XML file, your disk drive has been corrupted, or you simply can’t find the file you're looking for, you can recover an XML file easily with a file recovery software tool like iBeesoft Data Recovery.

    Just download and open the tool on your computer, select the file type “Other Files,” then select where you want to search on your computer, and click Scan.

    Screenshot of xml file recovery prcoess

    Image Source

    You'll see a list of results. You can sort by .xml, select the file, and click Recover.

    For a more in-depth look into this process, check out this step-by-step guide for recovering a lost XML file or repairing a corrupted file with iBeesoft.

    How do I comment in XML?

    To comment in an XML file, enclose the text within <!-- --> tags. Here's an example of a comment:

    <!-- declarations for <head> & <body> -->

    Note that this is the same syntax for commenting in HTML.

    Understanding XML

    It might not be as engaging as parallax scrolling or as groundbreaking as machine learning, but XML is one of the most crucial technologies on the web today.

    You can leave the coding up to developers, but having a solid understanding of XML will give you a better sense of how websites, including your own, deliver content.

    Editor's note: This post was originally published in July 2020 and has been updated for comprehensiveness.

    Related Articles

    Tangible tips and coding templates from experts to help you code better and faster.

      CMS Hub is flexible for marketers, powerful for developers, and gives customers a personalized, secure experience

      START FREE OR GET A DEMO