91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
宁阳县| 宾川县| 商城县| 万州区| 霍邱县| 盖州市| 黄龙县| 孝昌县| 额济纳旗| 当雄县| 乌兰浩特市| 贞丰县| 台北县| 兴宁市| 申扎县| 黄陵县| 怀安县| 镶黄旗| 屏南县| 新泰市| 大田县| 黑龙江省| 兴业县| 荣成市| 陆河县| 庐江县| 鹿泉市| 陕西省| 宣城市| 保亭| 沁阳市| 化德县| 柳州市| 乌兰察布市| 兰坪| 澄江县| 南昌县| 开江县| 齐河县| 蓬安县| 台南市|