commons io FileUtils.writeStringToFile is deprecated

rocky :

i need to write a content to file in a single statement something like FileUtils.writeStringToFile

Is there any alternative to it since it is deprecated

Rajendra arora :

By going through this documentation, It states that:

Deprecated. 2.5 use writeStringToFile(File, String, Charset) instead
Writes a String to a file creating the file if it does not exist using the default encoding for the VM.

You can follow this example:

final File file = new File(getTestDirectory(), "file_name.txt");
FileUtils.writeStringToFile(file, "content", "ISO-8859-1");

You can pass (String) null in your argument if you don't want to pass the encoding.

For more information, you can go through the link: Usage link

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=113027&siteId=1