Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.io.UnsupportedEncodingException;

public class Main {

    public static String iso2utf8(String iso) {
        try {
            String utf8 = new String(iso.getBytes("iso8859-1"), "utf-8");
            return utf8;
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return iso;
    }
}