Here you can find the source of writeFile(File file, String content)
Parameter | Description |
---|---|
file | a parameter |
size | a parameter |
Parameter | Description |
---|---|
IOException | an exception |
public static void writeFile(File file, String content) throws IOException
//package com.java2s; /**/* www . j av a 2s. com*/ * Copyright 2009 Welocalize, Inc. * * 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. * */ import java.io.File; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; public class Main { /** * Reads some bytes from the file. * * @param file * @param size * @return * @throws IOException */ public static void writeFile(File file, String content) throws IOException { if (!file.exists()) { file.getParentFile().mkdirs(); } FileWriter out = null; try { out = new FileWriter(file); out.write(content); } finally { if (out != null) { out.flush(); out.close(); } } } public static void writeFile(File file, String content, String encoding) throws IOException { if (!file.exists()) { file.getParentFile().mkdirs(); } FileOutputStream out = null; try { out = new FileOutputStream(file); out.write(content.getBytes(encoding)); } finally { if (out != null) { out.flush(); out.close(); } } } }