我需要制作如下所示的xml文件:
> <message xmlns="client"
> from="from_user" to="To_user"
> type="chat"><properties
> xmlns="@"http://software""><property><name>assetId</name><value
> type="string">5346879f73322e08db030000</value></property><property><name>status</name><value
> type="string">success</value></property><property><name>long</name><value
> type="double">22.3451</value></property>
> <property><name>lan</name><value type="double">3456</value></property>
> </properties></message>
我不知道怎么做。你可以帮帮我吗?
答案 0 :(得分:1)
在记事本中创建它或学习XSD并生成它。
检查一下 http://www.w3schools.com/xml/default.ASP
当你完成后,学习以下内容: http://www.w3schools.com/Schema/
答案 1 :(得分:0)
你可以这样创造
NSString *str = [NSString stringWithString:@"<message xmlns=\"client\"from=\"from_user\" to=\"To_user\" type=\"chat\"><properties xmlns=\"@\"http://software\"\"><property><name>assetId</name><value type=\"string\">5346879f73322e08db030000</value></property><property><name>status</name><value type=\"string\">success</value></property><property><name>long</name><value type=\"double\">22.3451</value></property> <property><name>lan</name><value type=\"double\">3456</value></property> </properties></message>"];