Whether XML element attribute name can be empty:

<?xml version="1.0" encoding="utf-8"?>
<test>
  <tables>
    <gg qqq="">
      <ss ""=""/>
      <mm ""=""/>
    </gg>
  </tables>
</test>

I am getting an exception I cant to load this. Is this possible?

没有正确的解决方案

其他提示

No, this will produce invalid XML. Attribute must have both name and value. How do you image opposite?

No this can not be done.

XML has empty element concept[If you are trying to implement that].

In that whole element is kept empty and said to be null as follow>>

<abc></abc>
<DefaultTaxPrice></DefaultTaxPrice>

Short answer, no. If you want to add value but not know what is the name of the value in XML, insert in into the body instead.

<ss>value</ss>

This way, your ss will be treated as a value

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top