home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / samples / XMLConverter / README < prev    next >
Encoding:
Text File  |  1999-08-16  |  1008 b   |  35 lines

  1. Friday, Aug 13, 1999              ICU XMLConverter Sample
  2. -------------------- 
  3.  
  4.   XMLConverter is an example which demonstrates codepage converersion
  5. between XML files.  (For more information on XML, see the IBM XML4C
  6. project which is available at:
  7.                          http://www.alphaWorks.ibm.com/tech/xml4c
  8.   The XML4C++ uses ICU internally for conversion.)
  9.  
  10.  
  11.   XML Files contain their encoding at the top, as in the following
  12. example:
  13.  
  14.     <?xml version="1.0" encoding="ascii" ?>
  15.  
  16.   To use the XMLConverter, try the following example:
  17.  
  18.    XMLConverter -v -e utf-16be samples/animal.xml samples/animal_utf16.xml
  19.  
  20.   This will create a file named animal_utf16.xml which is in the utf16
  21. big-endian codepage.
  22.  
  23. Currently the following encodings are supported:
  24.  
  25.  ascii, utf8, utf-16be, utf-16le, ebcdic-cp-us
  26.  
  27. ---
  28. (c) Copyright 1997-1999 IBM Corporation 
  29. IBM Center for Java Technology Silicon Valley,
  30. 10275 N De Anza Blvd., Cupertino, CA 95014 
  31. All rights reserved. 
  32. Internet email to icu4c@us.ibm.com
  33.  
  34.  
  35.