tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jodd > IO > How to write String to File

How to write String to File 

Jodd is an open-source java library with lot of reusable components and feature rich utilities. This requires the library jodd-3.3.2.jar to be in classpath. The following example shows how to use FileUtil.writeString() API.

File Name  :  
com/bethecoder/tutorials/jodd/io/WriteStringToFileTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.jodd.io;

import java.io.File;
import java.io.IOException;

import jodd.io.FileUtil;

public class WriteStringToFileTest {

  /**
   @param args
   @throws IOException 
   */
  public static void main(String[] argsthrows IOException {

    FileUtil.writeString("C:/pqr.txt""PQR\nPQR");
    FileUtil.writeString(new File("C:/xyz.txt")"XYZ\nXYZ");
  }

}
   

It gives the following output,
File Name  :  pqr.txt

File Name  :  xyz.txt



 
  


  
bl  br