资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

Android存取txt

/** 取SD卡路径 **/

让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网络空间、营销软件、网站建设、上城网站维护、网站推广。

        private String getSDPath() {

                File sdDir = null;

                boolean sdCardExist = Environment.getExternalStorageState().equals(

                                android.os.Environment.MEDIA_MOUNTED);

                // 判断sd卡是否存在

                if (sdCardExist) {

                        sdDir = Environment.getExternalStorageDirectory();

                        // 获取根目录

                }

                if (sdDir != null) {

                        return sdDir.toString();

                } else {

                        return "";

                }

        }

        /** 保存密码文件路径 **/

        private String getDirectory() {

                String dir = getSDPath() + "/" + "QQTSAVE";

                File file = new File(dir);

                if (!file.exists()) {

                        try {

                                file.mkdirs();

                        } catch (Exception e) {

                                e.printStackTrace();

                        }

                }

                return dir;

        }

        private void toSave(String user, String password) {

                File file = new File(getDirectory() + "/" + "us.txt");

                if (!file.exists()) {

                        try {

                                file.createNewFile();

                        } catch (IOException e) {

                                // TODO Auto-generated catch block

                                e.printStackTrace();

                        }

                }

                try {

                        FileWriter fw = new FileWriter(file);

                        fw.write(user + "asd" + password);

                        fw.close();

                } catch (IOException e) {

                        // TODO Auto-generated catch block

                        e.printStackTrace();

                }

        }

        public String Read() {

                String sb = "";

                

                BufferedReader br;

                try {

                        br = new BufferedReader(new FileReader(getDirectory() + "/" + "us.txt"));

                        String line = "";

                        while ((line = br.readLine()) != null) {

                                sb=line;

                        }

                        br.close();

                } catch (Exception e) {

                        // TODO Auto-generated catch block

                        e.printStackTrace();

                }

                Log.e("--------------", sb);

                return sb;

        }

        public void deleteSave(String user){

                File file = new File(getDirectory() + "/" + "us.txt");

                if (!file.exists()) {

                        try {

                                file.createNewFile();

                        } catch (IOException e) {

                                // TODO Auto-generated catch block

                                e.printStackTrace();

                        }

                }

                try {

                        FileWriter fw = new FileWriter(file);

                        fw.write(user+"null");

                        fw.close();

                } catch (IOException e) {

                        // TODO Auto-generated catch block

                        e.printStackTrace();

                }

        }


当前文章:Android存取txt
网页链接:http://cdkjz.cn/article/pejgee.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220