//檔案的建立-creat
file writename = new file("d:"); // 相對路徑,如果沒有則要建立乙個新的output。txt檔案
writename.createnewfile(); // 建立新檔案
bufferedwriter out = new bufferedwriter(new filewriter(writename));
out.write(buffer); // \r\n即為換行
out.flush(); // 把快取區內容壓入檔案
out.close(); // 最後記得關閉檔案
//檔案的讀取
public static void readfilebyrandomaccess(string filename)
} catch (ioexception e) finally catch (ioexception e1)
} }
}
/**
* 以行為單位讀取檔案,常用於讀面向行的格式化檔案
*/
public static string readfilebylines(string filename)
reader.close();
} catch (ioexception e) finally catch (ioexception e1)
} }
return content;
}
檔案的讀取與寫入
1 txt檔案的讀取 使用open函式讀取檔案 path 資料集檔案 文字檔案.txt f open path,encoding utf 8 mode r f.read 讀取檔案全部內容,如果在read 函式中傳入數字引數,表示讀取該位置之前的內容 f.readline 按行讀取檔案的第一行,如果r...
檔案寫入與檔案讀取
進行檔案寫入與讀取操作 在檔案讀取部分有些不理解 include include using namespace std struct tream intmain for j 0 j i j delete t ofile.close ifstream ifile ifile.open word.tx...
XML檔案寫入與讀取
把這個東西做成通用方法 以後直接傳引數就可以了 很方便 以下為寫入 建立乙個新的guest節點並將它新增到根節點下 xmlelement parentnode xdoc.createelement guest xdoc.documentelement.prependchild parentnode ...