Here you can find the source of indent(String s)
static String indent(String s)
//package com.java2s; public class Main { static String indent(String s) { return " " + s.trim().replace("\n", "\n "); }//from ww w.j a v a 2s . c o m }