如何用此字符串編寫.xml文件?用字符串編寫XML
字符串:
string string1 = textbox1.text;
string string2 = textbox2.text;
string string3 = textbox3.text;
string string4 = textbox4.text;
xml文件的結果:
<?xml version="1.0" encoding="utf-8" ?>
<books>
<book Title="Pure JavaScript" Price=string1/>
<book Title="Effective C++" Price=string2/>
<book Title="Assembly Language: Step-By-Step" Price=string3/>
<book Title="Oracle PL/SQL Best Practices" Price=string4/>
</books>
您的代碼示例中有8個不同的字符串,並且由於默認命名,我們不知道每個字符的含義。很難看出這些應該如何與您的XML相匹配。 – Oded
XML也是無效的,因爲'Price'屬性沒有引用值。 – Oded