문제

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