A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

        public static void main(String[] args) throws Exception {
                File java = new File("E:\\1");
                File txt = new File("E:\\2");

                File[] arr = java.listFiles();
                byte[] by = new byte[1024 * 8];
                int len;
                for (File file : arr) {
                        if (file.isFile() && file.getName().endsWith(".java")) {
                                FileInputStream fi = new FileInputStream(file);
                                String oname = file.getName();
                                String xname = oname.substring(0, oname.length() - 4) + ".txt";
                                FileOutputStream fo = new FileOutputStream(txt + "\\" + xname);

                                while ((len = fi.read(by)) != -1) {
                                        fo.write(by, 0, len);
                                }
                                fi.close();
                                fo.close();

                        }
                }
        }

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马