一応これが読み込み中部分のソースです。

public void txtload(String filname){

try{
BufferedReader in = new BufferedReader(new FileReader(filname));
int tl = 0;
for(String s;(s = in.readLine()) != null;tl++){
SC[tl] = s;
}
in.close();
}catch(IOException e){
System.out.println("err:"+e);
}
}

テキストファイルは、eEDITで作成しUTF-8で保存しました。
その他指摘のあった部分は自分には調査方法がわからないところもあり、調べてません。