Here you can find the source of gbk2Iso(String str)
public static final String gbk2Iso(String str) throws UnsupportedEncodingException
//package com.java2s; import java.io.UnsupportedEncodingException; public class Main { public static final String gbk2Iso(String str) throws UnsupportedEncodingException { return new String(str.getBytes("GBK"), "iso-8859-1"); }//from w ww . jav a2 s . c o m }