Here you can find the source of removeWhitespace(String str)
public static String removeWhitespace(String str)
//package com.java2s; public class Main { public static String removeWhitespace(String str) { if (isEmpty(str)) { return str; }//from ww w .j a va 2 s. com int sz = str.length(); char[] chs = new char[sz]; int count = 0; for (int i = 0; i < sz; i++) { if (!Character.isWhitespace(str.charAt(i))) { chs[count++] = str.charAt(i); } } if (count == sz) { return str; } return new String(chs, 0, count); } public static boolean isEmpty(String str) { return str == null || str.length() == 0; } }