Advertisement
Sketchware

Mostra mês com nome no EditText

Jun 24th, 2023
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.99 KB | None | 0 0
  1. SimpleDateFormat dateFormat = new SimpleDateFormat("MM");
  2. String monthNumber = dateFormat.format(data_ano.getTime());
  3.  
  4. String monthName;
  5. switch (monthNumber) {
  6.     case "01":
  7.         monthName = "JANEIRO";
  8.         break;
  9.     case "02":
  10.         monthName = "FEVEREIRO";
  11.         break;
  12.     case "03":
  13.         monthName = "MARÇO";
  14.         break;
  15.     case "04":
  16.         monthName = "ABRIL";
  17.         break;
  18.     case "05":
  19.         monthName = "MAIO";
  20.         break;
  21.     case "06":
  22.         monthName = "JUNHO";
  23.         break;
  24.     case "07":
  25.         monthName = "JULHO";
  26.         break;
  27.     case "08":
  28.         monthName = "AGOSTO";
  29.         break;
  30.     case "09":
  31.         monthName = "SETEMBRO";
  32.         break;
  33.     case "10":
  34.         monthName = "OUTUBRO";
  35.         break;
  36.     case "11":
  37.         monthName = "NOVEMBRO";
  38.         break;
  39.     case "12":
  40.         monthName = "DEZEMBRO";
  41.         break;
  42.     default:
  43.         monthName = "";
  44.         break;
  45. }
  46.  
  47. mes.setText(monthName);
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement