利用
org.apache.commons.io.FileUtils快速讀寫文件
http://php.11519.net/5jblog/?p=475
String
fileName = "C://11.txt";
File file = new File(fileName);
String
fileContent = "";
try {
fileContent =
org.apache.commons.io.FileUtils.readFileToString(file, "GBK");
}
catch (IOException e) {
e.printStackTrace();
}
fileContent
+="Helloworld";
try {
org.apache.commons.io.FileUtils.writeStringToFile(file,
fileContent, "GBK");
} catch (IOException e) {
e.printStackTrace();
}
其他參考
Commons
IO方便讀寫文件的工具類:http://laoyu.info/archives/282.html
Commons IO是apache的一個開源的工具包,封裝了IO操作的相關(guān)類,使用Commons
IO可以很方便的讀寫文件,url源代碼等.
普通地讀取一個網(wǎng)頁的源代碼的代碼可能如下
-
InputStream in = new URL( "http://laoyu.info" ).openStream();
-
try {
-
InputStreamReader inR = new InputStreamReader( in );
-
BufferedReader buf = new BufferedReader( inR );
-
String line;
-
while ( ( line = buf.readLine() ) != null ) {
-
System.out.println( line );
-
}
-
} finally {
-
in.close();
-
}
使用了Commons IO,則可以大大簡化代碼.如下:
-
InputStream in = new URL( "http://laoyu.info" ).openStream();
-
try {
-
System.out.println( IOUtils.toString( in ) );
-
} finally {
-
IOUtils.closeQuietly(in);
-
}
Commons IO里的常用類
FileUtils包含了文件操作的相關(guān)方法.
下面的代碼用于讀取磁盤上的某個文件:
-
File file = new File("c:/test.txt");
-
List lines = FileUtils.readLines(file, "UTF-8");
FileSystemUtils 可以獲得指定磁盤路徑的可用空間
-
long freeSpace = FileSystemUtils.freeSpace("d:/");
文件復(fù)制代碼:
-
File src = new File("src.txt");
-
File dest = new File("dest.txt");
-
FileUtils.copyFile(src, dest);
補充:
方便地下載文
件到本地
-
InputStream in = new
-
URL("http://www.baidu.com/img/baidu_logo.gif").openStream();
-
byte [] gif = IOUtils.toByteArray(in);
-
//IOUtils.write(gif,new
FileOutputStream(new File("c:/test.gif")));
-
FileUtils.writeByteArrayToFile(new File("c:/test.gif"),gif);
-
IOUtils.closeQuietly(in);
分享 commons io 工具類 代碼:http://www.javaeye.com/topic/575996
輸入流復(fù)制到
輸出流
- public class IoTest {
-
-
-
-
- public static void main(String[] args) throws Exception {
-
- Writer write = new FileWriter("c:\\kk.dat");
-
- InputStream ins = new FileInputStream(new File("c:\\text.txt"));
-
- IOUtils.copy(ins, write);
- write.close();
-
- ins.close();
- }
-
- }
文本寫入指定文件
- public class FileWirterTest {
-
-
-
-
- public static void main(String[] args) throws Exception{
-
-
- String name = "my name is panxiuyan";
-
- File file = new File("c:\\name.txt");
-
- FileUtils.writeStringToFile(file, name);
-
- }
-
- }
將輸入流轉(zhuǎn)換成文本
- public class URLIoTest {
-
-
-
-
- public static void main(String[] args) throws Exception {
-
- URL url = new URL("http://www.dimurmill.com");
-
- InputStream ins = url.openStream();
-
- String contents = IOUtils.toString(ins,"UTF-8");
- System.out.println( "Slashdot: " + contents );
-
-
- }
-
- }
關(guān)閉相關(guān)流
- public class IoCloseTest {
-
-
-
-
- public static void main(String[] args) {
-
-
- File file = null;
-
- InputStream ins = null;
- try{
- file = new File("C:\\Test.java");
-
- ins = new FileInputStream(file);
- }catch(Exception e){
- e.printStackTrace();
- }finally{
- IOUtils.closeQuietly(ins);
- }
-
- }
-
- }
文件復(fù)制
- public class FileCopyTest {
-
-
-
-
- public static void main(String[] args) throws Exception{
-
-
- File srcfile = new File("c:\\Test.java");
-
- File destfile = new File("c:\\Test.java.bak");
-
-
- FileUtils.copyFile(srcfile, destfile);
-
- }
-
- }
文件復(fù)制指定的目錄
- public class FileCopyTest {
-
-
-
-
- public static void main(String[] args) throws Exception{
-
-
- File srcfile = new File("c:\\Test.java");
-
- File destDir = new File("D:\\");
-
-
- FileUtils.copyFileToDirectory(srcfile, destDir);
-
- }
-
- }
網(wǎng)絡(luò)流保存為文件
- public class URLToFileTest {
-
-
-
-
- public static void main(String[] args) throws Exception{
-
-
- URL url = new URL("http://www.163.com");
-
- File file = new File("c:\\163.html");
-
- FileUtils.copyURLToFile(url, file);
-
- }
-
- }
文件目錄操作
- public class DirOper {
-
-
-
-
- public static void main(String[] args) throws Exception {
-
-
- File dir = new File("c:\\test");
-
- FileUtils.cleanDirectory(dir);
-
- FileUtils.deleteDirectory(dir);
-
- }
-
- }
目錄大小
- long size = FileUtils.sizeOfDirectory(dir);
目錄操作
- File testFile = new File( "testFile.txt" );
-
-
-
-
-
- FileUtils.touch( testFile );
-
記錄流的讀取寫入字節(jié)數(shù)
- File test = new File( "test.dat" );
-
-
- CountingOutputStream countStream = null;
-
-
-
-
-
-
-
- try {
-
- FileOutputStream fos = new FileOutputStream( test );
-
- countStream = new CountingOutputStream( fos );
-
- countStream.write( "Hello".getBytes( ) );
-
- } catch( IOException ioe ) {
-
- System.out.println( "Error writing bytes to file." );
-
- } finally {
-
- IOUtils.closeQuietly( countStream );
-
- }
-
-
-
- if( countStream != null ) {
-
- int bytesWritten = countStream.getCount( );
-
- System.out.println( "Wrote " + bytesWritten + " bytes to test.dat" );
-
- }
相同的內(nèi)容寫入不同的文本
- File test1 = new File("split1.txt");
-
- File test2 = new File("split2.txt");
-
- OutputStream outStream = null;
-
-
-
- try {
-
- FileOutputStream fos1 = new FileOutputStream( test1 );
-
- FileOutputStream fos2 = new FileOutputStream( test2 );
-
-
- outStream = new TeeOutputStream( fos1, fos2 );
-
-
-
- outStream.write( "One Two Three, Test".getBytes( ) );
-
- outStream.flush( );
-
- } catch( IOException ioe ) {
-
- System.out.println( "Error writing to split output stream" );
-
- } finally {
-
- IOUtils.closeQuietly( outStream );
-
- }