character stream -------- Reader 써서 한글지원하려고 합니다.
텍스트 파일 불러올때, 한글이 깨져서 나와서요.
텍스트 파일저장할때 메모장에서
utf-8 저장했구요.
이런식으로 써봤는데 그대로 입니다.

 ArrayList list = new ArrayList();
 
String path ="/sdcard/";
File file = new File(path+"LIST1.txt");

try{
 FileInputStream fis= new FileInputStream(file);
 
 Reader in = new InputStreamReader(fis, "UTF-8");

 DataInputStream dataIO = new DataInputStream(fis);
 
 String strLine = null;

 String str = dataIO.readLine();

 StringTokenizer st = new StringTokenizer(str.substring(str.indexOf("=")+1).trim(), ",");



 while (st.hasMoreTokens())
 {
       list.add(st.nextToken());
 }
 
 dataIO.close();
 fis.close();//파일 출력 스트림의 닫기
  
}