Package IO

Examples of IO.SaveObject.saveFile()


            }
            else{
                save=new SaveObject();
                Keep_It_Safe.accounts.add(account);
                this.output=printpasswordcorrect();
                this.output2=save.saveFile(Keep_It_Safe.accounts);
            }
        }
        else{
           this.output=printpasswordincorrect();
        }
View Full Code Here


                for(int i=0;i<Keep_It_Safe.accounts.size();i++){
                    account = (((Account) (Keep_It_Safe.accounts.get(i))));
                    if ((account.get_name()).equals(getUI_login().getjTextField1())){
                     Keep_It_Safe.accounts.remove(i);
                     this.output="User Successfully Removed";
                     this.output2=save.saveFile(Keep_It_Safe.accounts);
                     break;
                    }
                    else{
                        this.output=printuserincorrect();
                    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.