I parsing mp3 tags.
String artist - I do not know what was on the encoding
Ïåñíÿ ïðî íàäåæäó - example string in russian "Песня про надежду"
I use http://code.google.com/p/juniversalchardet/
code:
String GetEncoding(String text) throws IOException {
byte[] buf = new byte[4096];
InputStream fis = new ByteArrayInputStream(text.getBytes());
UniversalDetector detector = new UniversalDetector(null);
int nread;
while ((nread = fis.read(buf)) > 0 && !detector.isDone()) {
detector.handleData(buf, 0, nread);
}
detector.dataEnd();
String encoding = detector.getDetectedCharset();
detector.reset();
return encoding;
}
And covert
new String(text.getBytes(encoding), "cp1251"); -but this not work.
if I use utf-16
new String(text.getBytes("UTF-16"), "cp1251") return "юя П е с н я п р о н а д е ж д у" space - not is char space
EDIT:
this first read bytes
byte[] abyFrameData = new byte[iTagSize];
oID3DIS.readFully(abyFrameData);
ByteArrayInputStream oFrameBAIS = new ByteArrayInputStream(abyFrameData);
String s = new String(abyFrameData, "????");
new String(text.getBytes("UTF-16"), "cp1251")does not do what you think it does. What it actually does is take an existing string, retrieve its bytes as UTF-16, then attempt to create a new string by pretending that those bytes bytes are CP1251. Which is guaranteed to be wrong. – Anon May 16 '11 at 12:12text. This is where you should be detecting the encoding. What you're actually doing is applying some unknown encoding to turn the file's bytes into a string (unknown because you dodn't paste the code), then some other unknown encoding to turn that string back into bytes (unknown because you don't specify the encoding and we don't know your platform default), then trying to detect the encoding of those bytes. – Anon May 16 '11 at 12:15GetEncoding(String text). There's no reason for you to be converting thebyte[]to a string just so you can convert it back to bytes to guess the encoding (which is lost by the time you get through those conversions). Change the function to take abyte[]. – Anon May 17 '11 at 11:09