|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object play.libs.IO
public class IO
IO utils
Constructor Summary | |
---|---|
IO()
|
Method Summary | |
---|---|
static byte[] |
readContent(java.io.File file)
Read binary content of a file (warning does not use on large file !) |
static byte[] |
readContent(java.io.InputStream is)
Read binary content of a stream (warning does not use on large file !) |
static java.lang.String |
readContentAsString(java.io.File file)
Read file content to a String (always use utf-8) |
static java.lang.String |
readContentAsString(java.io.InputStream is)
Read the Stream conten as a string (always use utf-8) |
static java.util.Properties |
readUtf8Properties(java.io.InputStream is)
Read a properties file with the utf-8 encoding |
static void |
write(byte[] data,
java.io.File file)
Write binay data to a file |
static void |
write(java.io.InputStream is,
java.io.OutputStream os)
Copy an stream to another one. |
static void |
writeContent(java.lang.CharSequence content,
java.io.File file)
Write String content to a file (always use utf-8) |
static void |
writeContent(java.lang.CharSequence content,
java.io.OutputStream os)
Write String content to a stream (always use utf-8) |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public IO()
Method Detail |
---|
public static java.util.Properties readUtf8Properties(java.io.InputStream is) throws java.io.IOException
is
- Stream to properties file
java.io.IOException
public static java.lang.String readContentAsString(java.io.InputStream is) throws java.io.IOException
is
- The stream to read
java.io.IOException
public static java.lang.String readContentAsString(java.io.File file) throws java.io.IOException
file
- The file to read
java.io.IOException
public static byte[] readContent(java.io.File file) throws java.io.IOException
file
- The file te read
java.io.IOException
public static byte[] readContent(java.io.InputStream is) throws java.io.IOException
is
- The stream to read
java.io.IOException
public static void writeContent(java.lang.CharSequence content, java.io.OutputStream os) throws java.io.IOException
content
- The content to writeos
- The stream to write
java.io.IOException
public static void writeContent(java.lang.CharSequence content, java.io.File file) throws java.io.IOException
content
- The content to writefile
- The file to write
java.io.IOException
public static void write(byte[] data, java.io.File file) throws java.io.IOException
data
- The binary data to writefile
- The file to write
java.io.IOException
public static void write(java.io.InputStream is, java.io.OutputStream os) throws java.io.IOException
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |