合併內容格式不同的兩個檔案

2021-07-10 15:28:57 字數 730 閱讀 2996

題目描述:將檔案a.txt中的單詞與檔案b.txt中的單詞交替合併到檔案c.txt中,a.txt中的單詞用回車符分隔,b.txt中的單詞用回車符或者空格分隔

思路分析:由於題目明確說明了檔案a.txt與檔案b.txt的分隔符有所不同,所以考慮新建乙個檔案類,該類描述檔案,屬性有單詞、分隔符;然後在再建立乙個合併檔案的類,該類進行交替讀寫檔案操作

檔案描述類:

public class filemanager else

words = results.split(regex); }

public string nextword()

}

檔案合併操作類:

public class mergefile );

filemanager b = new filemanager("b.txt", new char);

filewriter c = new filewriter("c.txt");

string aword = null;

string bword = null;

while((aword = a.nextword()) != null)

while((bword = b.nextword()) != null)

c.close();

}}

列印兩個檔案不同的內容

使用php簡單實現 file1 name file1 file2 name file2 file1 file get contents file1 name file2 file get contents file2 name arr1 preg split n file1 arr2 preg sp...

利用shell比較兩個檔案內容的不同

兩個檔案a.txt和b.txt a.txt more a.txt 1122 3344 55 b.txt more b.txt 11122 7788 3399 如果執行diff a.txt b.txt diff w a.txt b.txt 1c1 11 111 2a3,4 77 88 4,5c6 44...

Git 合併兩個分支內容

1,將開發分支 合入到master中 git checkout dev 切換到dev開發分支 git pull git checkout master git merge dev 合併dev分支到master上 git push origin master 將 推到master上 2,將master...