Android Text File Write write(String pathName, String fileName, String s)

Here you can find the source of write(String pathName, String fileName, String s)

Description

write

License

Apache License

Declaration

public static void write(String pathName, String fileName, String s)
            throws IOException 

Method Source Code

//package com.java2s;
/*/*from w  ww . j  av  a2 s .c  om*/
 * Copyright 2004-2005 Germinus XXI, Liferay LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License")
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 * This is a derived work from source code taken from Liferay.
 */

import java.io.BufferedWriter;

import java.io.File;

import java.io.FileWriter;
import java.io.IOException;

import java.util.Enumeration;

import java.util.Properties;

public class Main {
    public static void write(File file, String s) throws IOException {
        if (file.getParent() != null) {
            mkdirs(file.getParent());
        }

        BufferedWriter bw = new BufferedWriter(new FileWriter(file));

        bw.flush();
        bw.write(s);
        bw.flush();

        bw.close();
    }

    public static void write(String fileName, String s) throws IOException {
        write(new File(fileName), s);
    }

    public static void write(String pathName, String fileName, String s)
            throws IOException {

        write(new File(pathName, fileName), s);
    }

    public static void write(File dest, Properties props)
            throws IOException {
        write(dest, propertiesToString(props));
    }

    public static void mkdirs(String pathName) {
        File file = new File(pathName);
        file.mkdirs();
    }

    public static String propertiesToString(Properties p) {
        StringBuffer sb = new StringBuffer();

        Enumeration enu = p.propertyNames();

        while (enu.hasMoreElements()) {
            String key = (String) enu.nextElement();

            sb.append(key);
            sb.append("=");
            sb.append(p.getProperty(key));
            sb.append("\n");
        }

        return sb.toString();
    }
}

Related

  1. write(File file, String content)
  2. write(File file, String s)
  3. write(File file, String s, boolean lazy)
  4. write(File file, String s, boolean lazy, boolean append)
  5. write(String fileName, String s)
  6. write2File(Set set, String path)
  7. writeFile(File f, String content)
  8. writeFile(File file, String content)
  9. writeFile(File file, String content)