• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

UTF -8 conversion for String in other Language

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i need to create a java code which will convert application form in XML(Supporting UTF-8)
This is working fine.

But when i am using extended characters for other languages such as French ,Russian)
i am not getting proper result .

Can some on help me!!
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not really. You haven't identified the problem in any clear way. You just have some idea that there's some kind of a problem, but you haven't described that problem in any way at all.

You might consider producing a description of the problem; then other people might be able to suggest ways to deal with it.
 
ashwin vulugundam
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what i am trying to do is ...i am having a form which consist a user related data such as name,address etc.. the details are stored in customer object and this object is used to put details in XML such as customer.xml which will be written after a while.The conversion to XML is done by DOM parsing

Now if i put the customer details in French,Italian or Russian..

I am not getting Proper UTF-8 character.

P.s: I am using this kind of code snipet to create Doccument
DOMImplementation theImplementation = builder.getDOMImplementation();
Document = theImplementation.createDocument(null, "CUSTOMER",null);
 
reply
    Bookmark Topic Watch Topic
  • New Topic