malikbster schrieb:
> So what i do next is adding a "meta" statement into the html file that
> is being load into the project.
>
> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
>
> This doesnt work either, get the same result.
Is the source saved as UTF-8 and do you tell the java-compiler
that the encoding to be used is UTF-8?
> So next I try to convert
> inside the java code every string into UTF-8 charset using URL
> methods:
>
> menu.addItem(URL.encode("Presentación"), menuPresentacion);
>
> And now firefox shows it like this:
>
> Presentaci%EF%BF%BDn
Reason is that the String you pass to the method is encoded
by the underlying system so the % is encoded in a way that
the character is shown.
Regards, Lothar
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---