String to ASCII - Java Internationalization

Java examples for Internationalization:Charset

Description

String to ASCII

Demo Code


//package com.java2s;
import java.io.UnsupportedEncodingException;

public class Main {
    public static void main(String[] argv) throws Exception {
        String str = "java2s.com";
        System.out.println(toASCII(str));
    }/*  w  ww  .  j  ava2s.c o  m*/

    public static final String US_ASCII = "US-ASCII";

    public static String toASCII(String str)
            throws UnsupportedEncodingException {
        return changeCharset(str, US_ASCII);
    }

    public static String changeCharset(String str, String newCharset)
            throws UnsupportedEncodingException {
        if (str != null) {
            byte[] bs = str.getBytes();
            return new String(bs, newCharset);
        }
        return null;
    }

    public static String changeCharset(String str, String oldCharset,
            String newCharset) throws UnsupportedEncodingException {
        if (str != null) {
            byte[] bs = str.getBytes(oldCharset);
            return new String(bs, newCharset);
        }
        return null;
    }
}

Related Tutorials