안녕하세요, 오늘은 텍스트 피일에 있는 한글을 출력하는 방법을 알아보도록 하겠습니다. 먼저 소스코드입니다. import java.io.*; public class P_8_3_2015103326 { public static void main(String[] args) { InputStreamReader in = null; FileInputStream fin = null; try { fin = new FileInputStream("C:\\StudyJava\\hangul.txt"); in = new InputStreamReader(fin, "utf-8"); int c; System.out.println("인코딩 문자 집합은" + in.getEncoding()); while((c= in.read())!= -1)..