Archived:Default encoding of Java Strings is ISO-8859-1 instead of UTF-8 on S60 2nd Edition (Known Issue)
hamishwillee
(Talk | contribs) |
m (Lpvalente -) |
||
| Line 1: | Line 1: | ||
| + | [[Category:Known Issue]][[Category:Java ME]][[Category:S60 2nd Edition (initial release)]] | ||
| + | {{Archived|timestamp=20120608174937|user=[[User:Lpvalente|Lpvalente]]}} | ||
| + | |||
| + | |||
{{ArticleMetaData <!-- v1.2 --> | {{ArticleMetaData <!-- v1.2 --> | ||
|sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | ||
| Line 26: | Line 30: | ||
==Description== | ==Description== | ||
| − | Default encoding is ISO-8859-1 instead of UTF-8. | + | {{Abstract|Default encoding is ISO-8859-1 instead of UTF-8.}} |
==Solution== | ==Solution== | ||
| − | When using data, which should be UTF-8, do not assume the default charset is UTF-8 but define it explicitly. For example: | + | When using data, which should be UTF-8, do not assume the default charset is UTF-8 but define it explicitly. For example: |
| − | + | <code java> String s = new String(byteArray, "utf-8"); </code> | |
Revision as of 20:49, 8 June 2012
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
The article is believed to be still valid for the original topic scope.
The article is believed to be still valid for the original topic scope.
Article Metadata
Tested with
Devices(s): Nokia 6600
Compatibility
Platform(s): S60 2nd Edition
Article
Created: User:Technical writer 1
(20 Aug 2007)
Last edited: lpvalente
(08 Jun 2012)
Description
Default encoding is ISO-8859-1 instead of UTF-8.
Solution
When using data, which should be UTF-8, do not assume the default charset is UTF-8 but define it explicitly. For example:

