Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. SimpleXML - Android - CDATA parsing
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <Box>
  4.     <SerialNumber>XYSSDSD</SerialNumber>
  5.     <Alias><![CDATA[SSS: 8]]></Alias>
  6.     <BoxType>SD</BoxType>
  7. </Box>
  8.        
  9. @Element(name="SerialNumber")
  10. private String serialNumber;
  11. @Element(name="Alias", data=true)
  12. private String aliasType;  
  13. @Element(name="BoxType")
  14. private String boxType;