中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java中進行兩個txt文本文檔的數據對比,找不不相同的字

小億
168
2023-12-19 16:22:09
欄目: 編程語言

可以使用Java的IO流和字符串處理來實現兩個txt文本文檔的數據對比,找出不相同的字。

以下是一個簡單的示例代碼:

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.HashSet;
import java.util.Set;

public class TextComparator {
    public static void main(String[] args) {
        String file1Path = "text1.txt";
        String file2Path = "text2.txt";

        try {
            Set<Character> diffChars = compareTextFiles(file1Path, file2Path);
            System.out.println("不相同的字:");
            for (Character ch : diffChars) {
                System.out.print(ch);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static Set<Character> compareTextFiles(String file1Path, String file2Path) throws IOException {
        Set<Character> diffChars = new HashSet<>();

        BufferedReader reader1 = new BufferedReader(new FileReader(file1Path));
        BufferedReader reader2 = new BufferedReader(new FileReader(file2Path));

        String line1, line2;
        while ((line1 = reader1.readLine()) != null && (line2 = reader2.readLine()) != null) {
            for (int i = 0; i < line1.length(); i++) {
                if (line1.charAt(i) != line2.charAt(i)) {
                    diffChars.add(line1.charAt(i));
                }
            }
        }

        reader1.close();
        reader2.close();

        return diffChars;
    }
}

上述代碼中,首先定義了兩個txt文本文檔的路徑 file1Pathfile2Path ,然后調用 compareTextFiles 方法進行對比,返回不相同的字的字符集合 diffChars ,最后打印出不相同的字。

請注意,上述代碼僅比較了兩個文本文檔中對應位置的字符是否相同,如果兩個文檔的字符數不一致,可能會導致數組越界異常。如果需要進行更復雜的對比邏輯,可以根據具體需求進行修改。

0
肃南| 类乌齐县| 清原| 田林县| 兰西县| 平潭县| 磴口县| 江山市| 吉安县| 武强县| 即墨市| 牟定县| 河东区| 东港市| 上杭县| 分宜县| 乳山市| 滁州市| 樟树市| 乌拉特后旗| 门头沟区| 丰原市| 和政县| 香格里拉县| 曲靖市| 马山县| 东港市| 万山特区| 宝丰县| 天峻县| 齐河县| 霍州市| 错那县| 土默特左旗| 黄平县| 廊坊市| 上高县| 修水县| 大邑县| 皋兰县| 洪江市|