Java Swing Text Format formartCpf(String cpf)

Here you can find the source of formartCpf(String cpf)

Description

formart Cpf

License

Open Source License

Declaration

public static String formartCpf(String cpf) 

Method Source Code


//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);
    }
}

Related

  1. createMaskFormatter(final String s)
  2. dataFormatada(Calendar cal)
  3. findElementUp(String name, Element start)
  4. findMatchingBracket(Element el, int offset)
  5. findNext(boolean reverse, int pos)
  6. format(String pattern, Object value)
  7. formata(String s, String mascara)
  8. formatAreaImperial(BigDecimal areaDec)
  9. formatAreaMetric(BigDecimal area)