0
votes
3answers
36 views
How to convert non-supported character to html entity in Java
Some character not support by certain charset, so below test fail. I would like to use html entity to encode ONLY those not supported character. How, in java?
public void testWrit …
2
votes
4answers
82 views
How to Find Default Charset/Encoding in Java?
The obvious answer is to use Charset.defaultCharset() but we recently found out that this might not be the right answer. I was told that the result is different from real default c …
0
votes
2answers
18 views
Message charset
How do I get the charset from javax.mail.Message object?
1
vote
3answers
170 views
Java String Encoding to UTF-8
Hi All,
I have some HTML code that I store in a Java.lang.String variable. I write that variable to a file and set the encoding to UTF-8 when writing the contents of the string va …
0
votes
2answers
51 views
Oracle Database Character Set
Hello how do I change or alter the character set of a database for it to support nihongo characters
0
votes
0answers
4 views
ado.net entity data model and mysql - problem with UTF8
I use ADO.NET Entity Data Model in ASP.NET with MySql. I tried many collocation for my databases and tables but so far diacritics (polish) characters are changed.. for example, fro …
0
votes
1answer
31 views
Unicode Encoding and decoding issues in QRCode
I am trying to generate UTF-8 QRCode so that I can encore accents and Unicode characters.
To test it, I am using many decoding solution :
http://zxing.org/w/decode.jspx - The zx …
8
votes
6answers
196 views
Guessing the encoding of text represented as byte[] in Java
Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely …
0
votes
2answers
34 views
Charset and UTF-8 in a downloaded text file on a Mac
We have a PHP/MYSQL application that collects user input, including special characters like ø,ü,ñ, etc Database is capturing them, and they can be seen via PHPmyAdmin. Download on …
0
votes
1answer
26 views
meta keywords characterset
On my site sinj.com.hr I have croatian diacritic letters which I encode to utf-8 html entities. For example,
Obiteljski liječnici, na području koje
pokriva sinjska ispostava …
0
votes
4answers
152 views
ruby on rails x charset
hi, i'm having problem to deal with charset in ruby on rails app, specificially in my templates. Code that comes from my database, works fine, but codes like ç ~ that are located i …
6
votes
4answers
147 views
Java: Why charset names are not constants?
Charset issues are confusing and complicated by themselves, but on top of that you have to remember exact names of your charsets. Is it "utf8"? Or "utf-8"? Or maybe "UTF-8"? When s …
0
votes
1answer
14 views
Charset problem, MySQL and get_meta_tags()
Hello,
I'm trying to get HTML meta tags with PHP by using get_meta_tags() function. I'm using UTF8 for tables, charset/collations, as connection charset to MySQL and everything el …
0
votes
2answers
143 views
How to create ZIP files with specific encoding
Hello,
On my Linux server I have some files with accented names (test-éàïù.zip).
When I add them to a new ZIP file using 7zip command-line tool, the charset/encoding information i …
1
vote
3answers
94 views
Avoid creating ‘new’ String objects when converting a byte[] to String using a specific charset
I'm reading from a binary file and want to convert the bytes to US ASCII strings. Is there any way to do this without calling new on String to avoid multiple semantically equal Str …
