Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 541|回复: 0

开发交流:Android Txt文本读写类源代码

[复制链接]

该用户从未签到

发表于 2011-10-24 10:49:27 | 显示全部楼层 |阅读模式
Android系统内部提供了一个不错的txt文本读写类,但目前并没有公开提供给标准的SDK,FileUtils类的源代码如下,可以很好的操作Linux下的文本文件。 public class FileUtils

{

    public static final int S_IRWXU = 00700;

    public static final int S_IRUSR = 00400;

    public static final int S_IWUSR = 00200;

    public static final int S_IXUSR = 00100;



    public static final int S_IRWXG = 00070;

    public static final int S_IRGRP = 00040;

    public static final int S_IWGRP = 00020;

    public static final int S_IXGRP = 00010;



    public static final int S_IRWXO = 00007;

    public static final int S_IROTH = 00004;

    public static final int S_IWOTH = 00002;

    public static final int S_IXOTH = 00001;

   

     public static final class FileStatus {

        public int dev;

        public int ino;

        public int mode;

        public int nlink;

        public int uid;

        public int gid;

        public int rdev;

        public long size;

        public int blksize;

        public long blocks;

        public long atime;

        public long mtime;

        public long ctime;

    }

   



    public static native boolean getFileStatus(String path, FileStatus status);



    private static final Pattern SAFE_FILENAME_PATTERN = Pattern.compile("[\\w%+,./=_-]+");





    public static boolean copyFile(File srcFile, File destFile) {

        boolean result = false;

        try {

            InputStream in = new FileInputStream(srcFile);

            try {

                result = copyToFile(in, destFile);

            } finally  {

                in.close();

            }

        } catch (IOException e) {

            result = false;

        }

        return result;

    }

   



    public static boolean copyToFile(InputStream inputStream, File destFile) {

        try {

            if (destFile.exists()) {

                destFile.delete();

            }

            OutputStream out = new FileOutputStream(destFile);

            try {

                byte[] buffer = new byte[4096];

                int bytesRead;

                while ((bytesRead = inputStream.read(buffer)) >= 0) {

                    out.write(buffer, 0, bytesRead);

                }

            } finally {

                out.close();

            }

            return true;

        } catch (IOException e) {

            return false;

        }

    }



     public static boolean isFilenameSafe(File file) {

        return SAFE_FILENAME_PATTERN.matcher(file.getPath()).matches();

    }





    public static String readTextFile(File file, int max, String ellipsis) throws IOException {

        InputStream input = new FileInputStream(file);

        try {

            long size = file.length();

            if (max > 0 || (size > 0 && max == 0)) {  



                if (size > 0 && (max == 0 || size < max)) max = (int) size;

                byte[] data = new byte[max + 1];

                int length = input.read(data);

                if (length <= 0) return "";

                if (length <= max) return new String(data, 0, length);

                if (ellipsis == null) return new String(data, 0, max);

                return new String(data, 0, max) + ellipsis;

            } else if (max < 0) {  // "tail" mode: keep the last N

                int len;

                boolean rolled = false;

                byte[] last = null, data = null;

                do {

                    if (last != null) rolled = true;

                    byte[] tmp = last; last = data; data = tmp;

                    if (data == null) data = new byte[-max];

                    len = input.read(data);

                } while (len == data.length);



                if (last == null && len <= 0) return "";

                if (last == null) return new String(data, 0, len);

                if (len > 0) {

                    rolled = true;

                    System.arraycopy(last, len, last, 0, last.length - len);

                    System.arraycopy(data, 0, last, last.length - len, len);

                }

                if (ellipsis == null || !rolled) return new String(last);

                return ellipsis + new String(last);

            } else {  

                ByteArrayOutputStream contents = new ByteArrayOutputStream();

                int len;

                byte[] data = new byte[1024];

                do {

                    len = input.read(data);

                    if (len > 0) contents.write(data, 0, len);

                } while (len == data.length);

                return contents.toString();

            }

        } finally {

            input.close();

        }

    }

}
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-11 07:47 , Processed in 0.359878 second(s), 34 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表