org.firebirdsql.encodings.Encoding_NotOneByte Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
/*
* Firebird Open Source J2ee connector - jdbc driver
*
* Distributable under LGPL license.
* You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* LGPL License for more details.
*
* This file was created by members of the firebird development team.
* All individual contributions remain the Copyright (C) of those
* individuals. Contributors to this file are either listed here or
* can be obtained from a CVS history command.
*
* All rights reserved.
*/
/* added by Blas Rodriguez Somoza:
*
* CVS modification log:
* $Log: Encoding_NotOneByte.java,v $
* Revision 1.4 2004/10/08 22:39:10 rrokytskyy
* added code to solve the issue when database has encoding NONE and there is no chance to control regional settings of the host OS
* added possibility to translate characters if there are some encoding issues
*
* Revision 1.3 2003/06/05 22:36:07 brodsom
* Substitute package and inline imports
*
* Revision 1.2 2003/01/23 01:40:50 brodsom
* Encodings patch
*
*/
package org.firebirdsql.encodings;
import java.io.UnsupportedEncodingException;
public class Encoding_NotOneByte implements Encoding{
String encoding = null;
char[] charMapping;
public Encoding_NotOneByte(String encoding){
this.encoding = encoding;
}
public Encoding_NotOneByte(String encoding, char[] charMapping) {
this.encoding = encoding;
this.charMapping = charMapping;
}
// encode
public byte[] encodeToCharset(String in){
byte[] result = null;
try {
if (charMapping != null)
in = new String(translate(in.toCharArray()));
result = in.getBytes(encoding);
}
catch (UnsupportedEncodingException uee){
}
return result;
}
public int encodeToCharset(char[] in, int off, int len, byte[] out){
byte[] by = null;
try {
if (charMapping != null)
in = translate(in);
by = new String(in).getBytes(encoding);
System.arraycopy(by, 0, out, 0, by.length);
}
catch (UnsupportedEncodingException uee){
}
return by.length;
}
// decode
public String decodeFromCharset(byte[] in){
String result = null;
try {
result = new String(in,encoding);
if (charMapping != null)
return new String(translate(result.toCharArray()));
}
catch (UnsupportedEncodingException uee){
}
return result;
}
public int decodeFromCharset(byte[] in, int off, int len, char[] out){
String str = null;
try {
str = new String(in, encoding);
str.getChars(0, str.length(), out, 0);
if (charMapping != null)
translate(out);
}
catch (UnsupportedEncodingException uee){
}
return str.length();
}
private char[] translate(char[] chars) {
for (int i = 0; i < chars.length; i++) {
chars[i] = charMapping[chars[i]];
}
return chars;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy