Java Encode encodeToTargetEncoding(String text, String sourceEncoding, String targetEncoding)

Here you can find the source of encodeToTargetEncoding(String text, String sourceEncoding, String targetEncoding)

Description

encode To Target Encoding

License

Open Source License

Declaration

public static String encodeToTargetEncoding(String text, String sourceEncoding, String targetEncoding)
            throws UnsupportedEncodingException 

Method Source Code


//package com.java2s;
/*//from  w w  w  .  ja va  2  s . c o m
 * capivara - Java File Synchronization
 *
 * Copyright (C) 2006 Sascha Hunold <hunoldinho@users.sourceforge.net>
 *
<license>
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
</license>
 *
 * $Id: EncodingUtils.java,v 1.4 2006/08/29 19:58:19 hunold Exp $
 */

import java.io.UnsupportedEncodingException;

public class Main {
    public static String encodeToTargetEncoding(String text, String sourceEncoding, String targetEncoding)
            throws UnsupportedEncodingException {
        String ret = new String(text.getBytes(sourceEncoding), targetEncoding);
        return ret;
    }
}

Related

  1. encodeQP(String text)
  2. encodeResult(final Object result)
  3. encodeRGBAsGrayScale(final byte[] raw, final int width, final int height, final int bitsPerPixel, final OutputStream out)
  4. encodeStringBase64(String str)
  5. encodeTagChar(char c, Appendable buffer)
  6. encodeUint(OutputStream out, final long value)
  7. encodeUInt32(int value, OutputStream out)
  8. encodeUnknownString(String in, OutputStream os)
  9. encodeUTCTime(long time, OutputStream os)