|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Xml
I want to create an XML file that has a set of key pair values. The values are in double and keys are in strings. I want my program to send keys and get the value. I don't have any idea about XML. Is there any place or a good book from, I can get this. I can't find in the web by browsing.
Thanks, lalitha.V |
|
#2
|
||||
|
||||
|
Please read "How to post a question!" (link in sig) before posting another thread. Your subject should reflect your question or problem.
What kind of program will be sending the keys? I would probably do something as simple as this: Code:
<pairs> <pair key="foo" value="bar" /> <pair key="bar" value="foo" /> </pairs> <!-- or --> <pairs> <value key="foo">bar</value> <value key="bar">foo</value> </pairs> [edit] forgot link to good tutorial www.w3schools.com [/edit]
__________________
# Jeremy Explain your problem instead of asking how to do what you decided was the solution. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > XML Programming > Xml |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|