ADDITIONAL SYSTEM INFORMATION :
Windows10 1703 (64bit)
OpenJDK 11(Oracle JDK builds 28)
A DESCRIPTION OF THE PROBLEM :
If the file specified when reading the file does not exist, the Japanese message of FileNotFoundException that occurs is garbled.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
When reading a file, specify a file that does not exist.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
java.io.FileNotFoundException: test.txt (������������������������������������������������������������������������������������������������������������������������������������ ������������������������������������������������������������������������������������������)
ACTUAL -
java.io.FileNotFoundException: test.txt (����t����@����C��������������������A����f����B������������N����g����)
---------- BEGIN SOURCE ----------
import java.io.FileNotFoundException;
import java.io.FileReader;
public class Sample {
public static void main(String[] args) {
try {
FileReader fr = new FileReader("test.txt");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
---------- END SOURCE ----------
FREQUENCY : always