0

When the following code runs in Windows 7 it gives the month in Turkish but in Linux it gives the month in English:

new SimpleDateFormat("dd MMMMMM", new Locale("tr")).format(date);
  • Windows 7 - 23 Ağustos
  • Linux - 23 August

I want the month in Turkish in Linux too!

How do I do this?

Mat
  • 202,337
  • 40
  • 393
  • 406
Buddhi
  • 2,224
  • 5
  • 32
  • 43

1 Answers1

1

Java does not support Turkish writing on linux operating systems. You can reference the following documentation. Here

Look under...

2.Enabled Writing Systems for Java Foundation Classes

Jordonias
  • 5,778
  • 2
  • 21
  • 32