> If you look at encoding charts, I think you'll find that umlauts are
> not treated as full characters, they are accents that appear _with_
> a letter of the alphabet like 'a' or 'e'.
In Swedish, Å (Aring), Ä (Auml) and Ö (Ouml) are regular letters,
entirely distinct from A and O (i.e. they are not simply accented
versions of A and O).
> Your encoding scheme, iso-8859-1, also known as "Latin-1" supports
> umlauts with the letters 'e', 'i', and 'y' but not with 'a'
> according to
> http://www.utoronto.ca/webdocs/HTMLdocs/NewHTML/iso_table.html.
Then what are characters 196 and 228?
/gordon

Signature
[ do not email me copies of your followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
Rhino - 05 Apr 2006 19:24 GMT
>> If you look at encoding charts, I think you'll find that umlauts are
>> not treated as full characters, they are accents that appear _with_
[quoted text clipped - 10 lines]
>
> Then what are characters 196 and 228?
My mistake! I misread the chart: I thought there was only one set of columns
showing the character, decimal value, hex value and 'entity reference'. I
see now that there were two such sets of columns. I only looked in the
second set of columns and missed the other umlauted characters.
My apologies for the inadvertent misinformation!
--
Rhino
Hi,
Thanx for ur kind help...
The problem is excetly same as u have explained. It display eigther
question mark or some tiny squares.
Before this is was using UTF-8 encoding. But with this characterset i
was not able to diplay or store umlaut characters on windows platform.
So i tried ISO-8859-1
on windows platform its working fine now. But linux is giving problem.
Now i dont have much experience on linux.
I can explain the flow of my code. It is as below.
My java code takes care of generating the xml to be displayed.
(generate diffrent fields like textbox,textarea,radiobox etc).
I use xsl stylesheet to display the page. and when i submit the form
jsp controller takes care of rest of the process. Like call the bean to
store and retrivew data and redirect to relavent page.
now on windows the string whcih has to be stored into database is
converted and stored fine.
but in linux it stores the wrong charactes into database itself.
so at the time of display it display wrong characters. So some thing
worg in java code?
which converts the string into worng formate which storing into
database?
Thank you,