SyntaxFix
Write A Post
Hire A Developer
Questions
There are three "default" encodings:
file.encoding:System.getProperty("file.encoding")
System.getProperty("file.encoding")
java.nio.Charset:Charset.defaultCharset()
Charset.defaultCharset()
And the encoding of the InputStreamReader:InputStreamReader.getEncoding()
InputStreamReader.getEncoding()
You can read more about it on this page.