What is the shortest way to open file for reading with readLine() method and with setting of it's encoding?
Is the following line correct and shortest?
BufferedReader reader =
new BufferedReader(
new InputStreamReader(
new FileInputStream(myPath), myEncoding));