1 6 package example; 7 8 import org.apache.commons.lang.WordUtils; 9 10 13 public class Hello { 14 public static void main(String [] args) { 15 String message = "hello ivy !"; 16 System.out.println("standard message : " + message); 17 System.out.println("capitalized by " + WordUtils.class.getName() + " : " + WordUtils.capitalizeFully(message)); 18 } 19 } 20 | Popular Tags |