Java examples for java.lang:String Unicode
This method converts an ISO-8859-1 encoded string to a UTF-8 encoded string.
/*/*w ww.j a v a 2 s . c o m*/ * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * 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 Lesser General Public License for more details. * * Copyright (c) 2006 - 2016 Pentaho Corporation.. All rights reserved. */ //package com.java2s; import java.io.UnsupportedEncodingException; public class Main { /** * This method converts an ISO-8859-1 encoded string to a UTF-8 encoded string. * * @param isoString * @return Re-encoded string */ public static String isoToUtf8(String isoString) { return convertStringEncoding(isoString, "ISO-8859-1", "UTF-8"); //$NON-NLS-1$ //$NON-NLS-2$ } /** * This method converts strings between various encodings. * * @param sourceString * @param sourceEncoding * @param targetEncoding * @return Re-encoded string. */ public static String convertStringEncoding(String sourceString, String sourceEncoding, String targetEncoding) { String targetString = null; if (null != sourceString && !sourceString.equals("")) { //$NON-NLS-1$ try { byte[] stringBytesSource = sourceString .getBytes(sourceEncoding); targetString = new String(stringBytesSource, targetEncoding); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e); } } else { targetString = sourceString; } return targetString; } }