This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENVIAR ALTERAÇÕES PARA SERVIDOR REMOTO | |
--- | |
git add . (todas as alteracoes, desde que esteja na pasta root do projeto) | |
git add <diretorio/nome_do arquivo> (para arquivo em especifico) | |
git commit -m "Descrição" | |
git push origin <branch> | |
RECEBER ALTERACOES SERVIDOR | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.text.NumberFormat; | |
public class MoneyStringFormat { | |
public static String Format(Object value) { | |
NumberFormat format = NumberFormat.getCurrencyInstance(); | |
return format.format(value); | |
} | |
} |