Here you can find the source of formartCpf(String cpf)
public static String formartCpf(String cpf)
//package com.java2s; /*//from w ww . ja v a 2 s . c o m IBPM - Ferramenta de produtividade Java Copyright (c) 1986-2009 Infox Tecnologia da Informa??o Ltda. Este programa ? software livre; voc? pode redistribu?-lo e/ou modific?-lo sob os termos da GNU GENERAL PUBLIC LICENSE (GPL) conforme publicada pela Free Software Foundation; vers?o 2 da Licen?a. Este programa ? distribu?do na expectativa de que seja ?til, por?m, SEM NENHUMA GARANTIA; nem mesmo a garantia impl?cita de COMERCIABILIDADE OU ADEQUA??O A UMA FINALIDADE ESPEC?FICA. Consulte a GNU GPL para mais detalhes. Voc? deve ter recebido uma c?pia da GNU GPL junto com este programa; se n?o, veja em http://www.gnu.org/licenses/ */ import java.text.ParseException; public class Main { public static String formartCpf(String cpf) { try { return formatNumericString(cpf, "###.###.###-##"); } catch (ParseException e) { return null; } } public static String formatNumericString(String string, String mask) throws java.text.ParseException { javax.swing.text.MaskFormatter mf = new javax.swing.text.MaskFormatter(mask); mf.setValueContainsLiteralCharacters(false); return mf.valueToString(string); } }