一、對檔案進行讀寫操作
1.使用fileinputstream讀取資料
//從檔案中讀取資料
public static void fileinputstream() throws ioexception
system.out.println(result);
in.close();
}
2.把資料寫入檔案中
//使用fileoutputstream寫入資料
public static void fileoutputstream() throws ioexception
//使用printstream或者printwriter
public static void b() throws filenotfoundexception
二、對檔案進行複製
public static void copy() throws ioexception
/*while ((len=in.read())!=-1) */
in.close();
out.close();
}
IO流檔案操作
file f new file string pathname 完整目錄 file f new file string parent,string child 父目錄 加 子目錄 file f new file file parent,string child 父目錄 加 子 操作方法 boolea...
用redis對檔案進行訪問
檔案存入,用base64將檔案進行編碼,然後將檔案存入redis,適合檔案不長期儲存,如下 檔案提取,從redis中取出base64編碼,然後進行反編碼,生成檔案 file file newfile path string base64file base64.encode file if strin...
對檔案進行的操作命令
1.cut 按照字元提取 head 2 1.txt cut c 5 指定分隔符 head 2 1.txt cut d f 1,2 2.sort 文字排序 sort 檔名 文字排序反轉 sort r 檔名 文字排序去重 sort u 檔名 數值按大小排序 sort n 檔名 指定分隔符 指定排序列 s...