Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static String ISO2UTF8(String str) {
        String ret = null;
        try {
            ret = new String(str.getBytes("ISO-8859-1"), "UTF-8");
        } catch (Exception e) {
            ret = "ISO2UTF8 error. str=" + str;
        }
        return (ret);
    }
}