Here you can find the source of ascii2Str(String s)
public static String ascii2Str(String s)
//package com.java2s; //License from project: Open Source License public class Main { public static String ascii2Str(String s) { String[] chars = s.split(" "); StringBuffer result = new StringBuffer(); for (int i = 0; i < chars.length; i++) { result.append((char) Integer.parseInt(chars[i])); }//from w ww . j ava 2 s . c o m return result.toString(); } }