简体   繁体   English

Java从HashMap中删除并在文件中写入更改

[英]Java removing from HashMap and writing changes in file

So here I have code I have HashMap made up by the words in file, I am adding words and writing them on file and it works, but when I use my remove function for some reaseon doesnt do anything here is the code : 所以在这里我有代码,文件中的单词构成了HashMap,我在文件中添加单词并将它们写在文件中,并且可以正常工作,但是当我将remove函数用于某些reaseon时,这里的代码不起作用:

  import java.io.BufferedWriter;
  import java.io.File;
  import java.io.FileNotFoundException;
  import java.io.FileWriter;
  import java.util.HashMap;
  import java.util.Map;
   import java.util.Scanner;

   public class Main {
   public static File file = new File( C:\\Users\\N\\Desktop\\Newfolder\\Dictionary\\src\\nmishewa\\geekycamp\\dictionary\\bg_win1251.txt");
public static int value = 1;
private static Scanner input;
public static Scanner in = new Scanner(System.in);
public static Map<String, Integer> map = new HashMap<String, Integer>();

public static void main(String[] args) throws FileNotFoundException {
    readFile();
    System.out.println("Enter number of function wanted" + "\n1 to add"
            + "\n2 for searching by prefix" + "\n3 for deleting");
    int choice = in.nextInt();
    if (choice == 1) {
        System.out.println("enter words seprated by comma");
        String wd = in.next();
        add(wd);
    }
    if (choice == 2) {
        System.out.println("Enter prefix");
        String wd = in.next();
        prefixSearch(wd);
    }
    if (choice == 3) {
        System.out.println("ENTER word to delete");
        String wd = in.next();
        remove(wd);
    }

}

public static void readFile() throws FileNotFoundException {
    input = new Scanner(file);
    boolean done = false;

    int value = 1;

    while (input.hasNext()) {
        String word = input.next().toLowerCase();
        String[] line = word.split("[,\\s]+");
        for (int j = 0; j < line.length; j++) {
            map.put(line[j], value);
            value++;
            done = true;
        }
    }
    if (done == true) {
        System.out.println("Succes");
    }
}

public static void prefixSearch(String wd) {
    System.out.println("Enter prefix");
    String prefix = wd.toLowerCase();
    for (Map.Entry<String, Integer> key : map.entrySet()) {
        if (key.getKey().startsWith(prefix)) {
            System.out.println(key.getKey());
        }
    }

}

public static void add(String wd) {
    boolean done = false;
    String word = wd.toLowerCase();
    String[] line = word.split("[,\\s]+");
    for (int j = 0; j < line.length; j++) {
        if (!map.containsKey(line[j])) {
            map.put(line[j], value);
            value++;

            try {
                FileWriter fw = new FileWriter(file.getAbsoluteFile());
                BufferedWriter bw = new BufferedWriter(fw);
                bw.write(map.toString());
                bw.close();
                done = true;
            } catch (Exception e) {
                e.printStackTrace();
            }
        } else {
            continue;
        }
    }

    if (done == true) {
        System.out.println("Success");
    }

}

public static void remove(String wd) {
    boolean done = false;
    String word = wd.toLowerCase();
    String[] line = word.split("[,\\s]+");
    for (int j = 0; j < line.length; j++) {
        for (Map.Entry<String, Integer> key : map.entrySet()) {
            if (key.getKey().equals(line[j])) {
                map.remove(key.getKey(), key.getValue());
                try {
                    FileWriter fw = new FileWriter(file.getAbsoluteFile());
                    BufferedWriter bw = new BufferedWriter(fw);
                    bw.write(map.toString());
                    bw.close();
                    done = true;
                } catch (Exception e) {
                    e.printStackTrace();
                }
            } else {
                continue;
            }
        }

    }
    if (done == true) {
        System.out.println("Succes");
    }

}

} }

Every other method is working just fine, but remove. 其他所有方法都可以正常工作,但可以删除。 Is there something wrong with the loops, maybe use more optimal way or? 循环有问题吗,也许使用更优化的方法?

The issues that I can see in your code are the following: 我在您的代码中看到的问题如下:

  1. You forgot a quote when defining the file: 您在定义文件时忘记了报价:

    public static File file = new File( C:\\\\Users\\\\N\\\\Desktop\\\\Newfolder\\\\Dictionary\\\\src\\\\nmishewa\\\\geekycamp\\\\dictionary\\\\bg_win1251.txt")

should be: 应该:

public static File file = new File("C:\\Users\\N\\Desktop\\Newfolder\\Dictionary\\src\\nmishewa\\geekycamp\\dictionary\\bg_win1251.txt");
  1. The remove() function in a map receives only one parameter, which is the key of the entry you want to remove, so: 映射中的remove()函数仅接收一个参数,这是您要删除的条目的键,因此:

    map.remove(key.getKey(), key.getValue());

should be: 应该:

map.remove(key.getKey());

Also, since your getting the entrySet of your map, maybe you should consider renaming the key variable in the rename() function to entry . 另外,由于您获取了地图的entrySet,也许您应该考虑将named()函数中的key变量重命名为entry

The reason for failure is that you're trying to change the map while iterating the entries. 失败的原因是您要在迭代条目时尝试更改地图。 As with any collection - if you try to modify it while iterating it you'll get ConcurrentModificationException . 与任何集合一样-如果尝试在迭代过程中对其进行修改,则会收到ConcurrentModificationException

Further, there's a redundant inner for-loop (redundant because the whole purpose of a map is that you won't have to iterate it when you're looking for a specific value/s) which means that you'll try to override the file many times when only once is sufficient. 此外,还有一个冗余的内部for循环(这是冗余的,因为映射的整个目的是在查找特定值时不必迭代它),这意味着您将尝试覆盖仅一次就足够多次归档。

public static void remove(String wd) {
    boolean done = false;
    String word = wd.toLowerCase();
    String[] line = word.split("[,\\s]+");
    for (int j = 0; j < line.length; j++) {
        map.remove(line[j]);
    }
    try {
        FileWriter fw = new FileWriter(file.getAbsoluteFile());
        BufferedWriter bw = new BufferedWriter(fw);
        bw.write(map.toString());
        bw.close();
        done = true;
    } catch (Exception e) {
        e.printStackTrace();
    }
    if (done == true) {
        System.out.println("Success");
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM