I hope you can help me with my problem:
CONTEXT
I'm working on a Java application. Following java, instruction works properly in in Ubuntu 16, but It fails when deploying on an Ubuntu 14.
String test = "Für test with and without Ü".replaceAll("[^\\p{L}\\p{Nd}]+", ",");
System.out.println(test);
PROBLEM
German characters are not properly shown on ubuntu 14.04. In Ubuntu 16 works perfectly, like you can see in the images
Output in Ubuntu 16
Output in Ubuntu 14.04
I have to try to set locales in Ubuntu 14 but I don't really know what is the problem
Can anyone help me?