String n="\n"; String spe =" ";
                   File file = new File(mSdPath + "/파일.txt");
                   try{
                    FileOutputStream fos = new FileOutputStream(file);
                    fos.write(year.getBytes());
                    fos.write(spe.getBytes());
                    fos.write(mname.getBytes());
                    fos.write(spe.getBytes());
                    fos.write(mcode.getBytes());
                    fos.write(spe.getBytes());
                    fos.write(id.getBytes());
                    fos.write(spe.getBytes());
                    fos.write(name.getBytes());
                    fos.write(spe.getBytes());
                    fos.write(mo.getBytes());
                    fos.write(n.getBytes());
                    fos.close();

해당값 입력하고서 클릭하면 위에 소스가 실행되게 햇는데
값 다르게 입력하고 클릭하면 위에 소스가 전 내용에 추가되는식으로 되야되는데
그냥 다 없어지고 마지막 새로운 값만 들어오네요 ㅜㅜㅜ
방법이 모가 있나요???