I am trying to parse US7ASCII file using java, using the below code:
FileInputStream fileInputStream = new FileInputStream(file);
InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream, charSetName);
In line 2, the 2nd parameter is the charset name which I need to pass the charset name.
The charsets supported in Java are provided in the link below: https://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html
There I could not find any entry for US7ASCII. Can someone help me in identifying what charset name I should pass for US7ASCII encoded files.