如何识别数据格式

How to recognize data format

我有两种格式的相同类型的数据,但我不确定它们是哪种格式。

数据格式 1

{
  "ArraytionGroup": {
    "-xmlns:xsd": "http://www.w3.org/2001/XMLSchema",
    "-xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
    "LocationGroup": [
      {
        "Id": "6",
        "Uuid": "894055b6-971ecc0c7224",
        "Name": {
          "-xmlns": "http://www.air-watch.com/servicemodel/resources",
          "#text": "gtg"
        },
        "GroupId": { "-xmlns": "http://www.air-watch.com/servicemodel/resources" },
        "LocationGroupType": {
          "-xmlns": "http://www.air-watch.com/servicemodel/resources",
          "#text": "C"
        },
        "Country": {
          "-xmlns": "http://www.air-watch.com/servicemodel/resources",
          "#text": "s"
        },
        "Locale": {
          "-xmlns": "http://www.air-watch.com/servicemodel/resources",
          "#text": "kk"
        },
        "ParentLocationGroup": {
          "-xmlns": "http://www.air-watch.com/servicemodel/resources",
          "-uuid": "bdce439362",
          "#text": "70"
        },
        "CreatedOn": {
          "-xmlns": "http://www.air-watch.com/servicemodel/resources",
          "#text": "2/21/2018 3:08:55 PM"
        },
}

数据格式 2

<?xml version="1.0" encoding="utf-8" ?>
<SarttGroupSe xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.air-watch.com/servicemodel/resources">
    <Page>0</Page>
    <PageSize>500</PageSize>
    <Total>61</Total>
    <LocationGroups>
        <Id xmlns="">655</Id>
        <Name>EDX</Name>
        <GroupId>DDDD</GroupId>
        <LocationGroupType>Container</LocationGroupType>
        <Country/>
        <Locale/>
        <Users>0</Users>
        <Admins>0</Admins>
        <Devices>0</Devices>
    </LocationGroups>
    <LocationGroups>
        <Id xmlns="">2</Id>
        <Name>EE</Name>
        <GroupId>New</GroupId>
        <LocationGroupType>C</LocationGroupType>
        <Country/>
        <Locale/>
        <Users>0</Users>
        <Admins>0</Admins>
        <Devices>0</Devices>
    </LocationGroups>
    <LocationGroups>
        <Id xmlns="">6</Id>
        <Name>RAC</Name>
        <LocationGroupType>Ciner</LocationGroupType>
        <Country/>
        <Locale/>
        <Users>0</Users>
        <Admins>0</Admins>
        <Devices>0</Devices>
    </LocationGroups>
</SarttGroupSe>

这些数据是什么格式谁能帮帮我?

JSON 对象被花括号 {} 包围。

JSON 个对象以 key/value 对写入。

键必须是字符串,值必须是有效的 JSON 数据类型(字符串、数字、对象、数组、布尔值或空值)。

示例{ "name":"John", "age":30, "car":null } 那么你的第一个例子是一个 json 对象 验证 json validator

中的第一个示例

Element 对象表示 XML 文档中的一个元素。元素可能包含属性、其他元素或文本。如果元素包含文本,则文本在文本节点中表示。

example <year>2005</year> 那么你的第二个例子是 xml object

尝试 xml validator

中的第二个示例