java输入输出流读取本地文件

读取计算机本地文件
fileName :C:/dev/json.txt

public static String getJsonString(String fileName) {
        StringBuffer sb = new StringBuffer();
        FileReader fr = null;
        try {
            fr = new FileReader(fileName);
            BufferedReader br = new BufferedReader(fr);
            String s;
            while ((s = br.readLine()) != null) {
                sb.append(s);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                fr.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return sb.toString();
    }

将内容输出到本地某位置

public static void byteOutStream(String msg,String idno) throws Exception {

        //1:使用File类创建一个要操作的文件路径
        File file = new File("C:" + File.separator + "demo" + File.separator + idno+".txt");
        if(!file.getParentFile().exists()){ //如果文件的目录不存在
            file.getParentFile().mkdirs(); //创建目录

        }

        //2: 实例化OutputString 对象
        OutputStream output = new FileOutputStream(file);

        //3: 准备好实现内容的输出
        //将字符串变为字节数组d
        byte data[] = msg.getBytes();
        output.write(data);
        //4: 资源操作的最后必须关闭
        output.close();
    }
/**
     * 获取某个文件夹下的所有文件
     *
     * @param path 文件夹的路径
     * @return
     */
    public static List getAllFileName(String path) {
        List files = new ArrayList();
        boolean flag = false;
        File file = new File(path);
        File[] tempList = file.listFiles();

        for (int i = 0; i < tempList.length; i++) {
            if (tempList[i].isFile()) {
//              System.out.println("文     件:" + tempList[i]);
                //fileNameList.add(tempList[i].toString());
                files.add(tempList[i].getName());
            }

        }
        return files;
    }

你可能感兴趣的:(工具)