Skip to content

Instantly share code, notes, and snippets.

@flybyray
Created December 2, 2016 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flybyray/659a1b8ad14e69a72415f869b1b91619 to your computer and use it in GitHub Desktop.
Save flybyray/659a1b8ad14e69a72415f869b1b91619 to your computer and use it in GitHub Desktop.
fixing FileNotFoundException
package play.libs;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import play.exceptions.UnexpectedException;
import play.utils.OrderSafeProperties;
import java.io.*;
import java.nio.file.FileVisitResult;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.SimpleFileVisitor;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.List;
import java.util.Properties;
import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
import static org.apache.commons.io.IOUtils.closeQuietly;
/**
* IO utils
*/
public class IO {
/**
* Read a properties file with the utf-8 encoding
* @param is Stream to properties file
* @return The Properties object
*/
public static Properties readUtf8Properties(InputStream is) {
Properties properties = new OrderSafeProperties();
try {
properties.load(is);
return properties;
} catch (Exception e) {
throw new RuntimeException(e);
}
finally {
closeQuietly(is);
}
}
/**
* Read the Stream content as a string (use utf-8)
* @param is The stream to read
* @return The String content
*/
public static String readContentAsString(InputStream is) {
return readContentAsString(is, "utf-8");
}
/**
* Read the Stream content as a string
* @param is The stream to read
* @return The String content
*/
public static String readContentAsString(InputStream is, String encoding) {
try {
return IOUtils.toString(is, encoding);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* Read file content to a String (always use utf-8)
* @param file The file to read
* @return The String content
*/
public static String readContentAsString(File file) {
return readContentAsString(file, "utf-8");
}
/**
* Read file content to a String
* @param file The file to read
* @return The String content
*/
public static String readContentAsString(File file, String encoding) {
try {
return FileUtils.readFileToString(file, encoding);
} catch (IOException e) {
throw new UnexpectedException(e);
}
}
public static List<String> readLines(InputStream is) {
List<String> lines;
try {
lines = IOUtils.readLines(is);
} catch (IOException ex) {
throw new UnexpectedException(ex);
}
return lines;
}
public static List<String> readLines(File file, String encoding) {
try {
return FileUtils.readLines(file, encoding);
} catch (IOException ex) {
throw new UnexpectedException(ex);
}
}
public static List<String> readLines(File file) {
return readLines(file, "utf-8");
}
/**
* Read binary content of a file (warning does not use on large file !)
* @param file The file te read
* @return The binary data
*/
public static byte[] readContent(File file) {
try {
return FileUtils.readFileToByteArray(file);
} catch (IOException e) {
throw new UnexpectedException(e);
}
}
/**
* Read binary content of a stream (warning does not use on large file !)
* @param is The stream to read
* @return The binary data
*/
public static byte[] readContent(InputStream is) {
try {
return IOUtils.toByteArray(is);
} catch (IOException e) {
throw new UnexpectedException(e);
}
}
/**
* Write String content to a stream (always use utf-8)
* @param content The content to write
* @param os The stream to write
*/
public static void writeContent(CharSequence content, OutputStream os) {
writeContent(content, os, "utf-8");
}
/**
* Write String content to a stream (always use utf-8)
* @param content The content to write
* @param os The stream to write
*/
public static void writeContent(CharSequence content, OutputStream os, String encoding) {
try {
IOUtils.write(content, os, encoding);
} catch (IOException e) {
throw new UnexpectedException(e);
} finally {
closeQuietly(os);
}
}
/**
* Write String content to a file (always use utf-8)
* @param content The content to write
* @param file The file to write
*/
public static void writeContent(CharSequence content, File file) {
writeContent(content, file, "utf-8");
}
/**
* Write String content to a file (always use utf-8)
* @param content The content to write
* @param file The file to write
*/
public static void writeContent(CharSequence content, File file, String encoding) {
try {
FileUtils.write(file, content, encoding);
} catch (IOException e) {
throw new UnexpectedException(e);
}
}
/**
* Write binary data to a file
* @param data The binary data to write
* @param file The file to write
*/
public static void write(byte[] data, File file) {
try {
FileUtils.writeByteArrayToFile(file, data);
} catch(IOException e) {
throw new UnexpectedException(e);
}
}
/**
* Copy an stream to another one.
*/
public static void copy(InputStream is, OutputStream os) {
try {
IOUtils.copyLarge(is, os);
} catch(IOException e) {
throw new UnexpectedException(e);
}
finally {
closeQuietly(is);
}
}
/**
* Copy an stream to another one.
*/
public static void write(InputStream is, OutputStream os) {
try {
IOUtils.copyLarge(is, os);
} catch(IOException e) {
throw new UnexpectedException(e);
} finally {
closeQuietly(is);
closeQuietly(os);
}
}
/**
* Copy an stream to another one.
*/
public static void write(InputStream is, File f) {
try {
OutputStream os = new FileOutputStream(f);
try {
IOUtils.copyLarge(is, os);
}
finally {
closeQuietly(is);
closeQuietly(os);
}
} catch (IOException e) {
throw new UnexpectedException(e);
}
}
// If targetLocation does not exist, it will be created.
public static void copyDirectory(File source, File target) {
Path src = source.toPath ();
Path dest = target.toPath ();
try {
Files.walkFileTree ( src,
new SimpleFileVisitor<Path> () {
@Override
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
FileVisitResult preVisitDirectoryResult = super.preVisitDirectory ( dir, attrs );
if (FileVisitResult.CONTINUE.equals ( preVisitDirectoryResult )) {
Path targetPath = dest.resolve ( src.relativize ( dir ) );
if (!Files.exists ( targetPath )) Files.createDirectory ( targetPath );
}
return preVisitDirectoryResult;
}
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
FileVisitResult visitFileResult = super.visitFile ( file, attrs );
if (FileVisitResult.CONTINUE.equals ( visitFileResult ))
Files.copy ( file, dest.resolve ( src.relativize ( file ) ), REPLACE_EXISTING );
return visitFileResult;
}
} );
} catch (IOException e) {
throw new UnexpectedException ( e );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment