美文网首页
控制台实现微型词典_改版

控制台实现微型词典_改版

作者: Coder_Newson | 来源:发表于2019-10-20 17:05 被阅读0次

    题目如下:
    要求从控制台输入英语单词及单词解释两项数据,把录入的数据追加到文件中。要求提供单词查询功能。用户输入单词后,从单词库文件中查找,如果存在则输出该单词的解释。注意,单词不能有重复,如果重复则覆盖替换以前的解释数据。

    CSDN已有作者写过,代码在我的环境不能运行,就做了一些修改,下面附上原作者链接:
    https://blog.csdn.net/ZP_icenow/article/details/81040903

    修改后代码如下:

    package homework;
    
    /**
     * @创建人 Zeng
     * @创建时间 2019/10/20
     * @描述
     */
    import java.io.*;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    
    public class Dictionary {
        // 使用map泛型存储
        private static Map<String, String> dictionaryMap = new HashMap<>();
        // 单词是否存在判断标志
        private static boolean isHave = true;
    
        public static void main(String[] args) throws IOException {
    
            File file = new File("dictionary.txt");
            if (file.exists() && file.isFile()) {
                System.out.println("文件已存在");
            } else {
                if (file.createNewFile()) System.out.println("创建成功");
            }
            InputStreamReader inputStreamReader = new InputStreamReader(System.in);
            BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
            FileReader fileReader = new FileReader(file);
            BufferedReader bufferedReaderForFile = new BufferedReader(fileReader);
            String stringFromFile = null;
            while ((stringFromFile = bufferedReaderForFile.readLine()) != null) {
                String[] strings = stringFromFile.split("=");
                dictionaryMap.put(strings[0], strings[1]);
            }
    
    
            PrintWriter printWriter = new PrintWriter(file);
            String s = null;
            System.out.println("微词典\n==============请选择============\n1\t存单词解释;\n2\t查询单词\n3\t退出");
    
            while ((s = bufferedReader.readLine()) != null) {
    
                if (s.equals("3")) {
                    break;
                }
                if (s .equals( "1")) {
                    System.out.println("格式: /单词/=/解释/");
                    if ((s = bufferedReader.readLine()) != null) {
                        if ((s.indexOf('=') == -1) || (s.indexOf('=') == 0) || (s.indexOf('=') != s.lastIndexOf('='))) {
                            System.out.println("格式错误");
                            break;
                        }
                        DmapAdd(s);
                        printWriter.flush();
                    }
                } else if (s.equals("2")) {
                    isHave = false;
                    System.out.println("请输入单词:");
                    if ((s = bufferedReader.readLine()) != null) {
                        String finalS = s;
                        Iterator<Map.Entry<String, String>> iterator = dictionaryMap.entrySet().iterator();
                        while (iterator.hasNext())
                        {
                            Map.Entry<String, String> entry = iterator.next();
                            if (entry.getKey().equals(finalS))
                            {
                                System.out.println("解释:" +entry.getValue());
                                isHave = true;
                            }
                        }
                        if (!isHave) System.out.println("查无此词");
                    }
                }
            }
    
            // 遍历map泛型
            for (Map.Entry<String, String> entry: dictionaryMap.entrySet())
            {
                
                printWriter.println(entry.getKey() + "=" + entry.getValue());
            }
    
            bufferedReader.close();
            bufferedReaderForFile.close();
            printWriter.close();
        }
    
        private static void DmapAdd(String s) {
            isHave = true;
            String[] strings = s.split("=");
            Iterator<Map.Entry<String, String>> iterator = dictionaryMap.entrySet().iterator();
            while (iterator.hasNext())
            {
                Map.Entry<String, String> entry = iterator.next();
                if (entry.getKey().equals(strings[0]))
                {
                    dictionaryMap.put(entry.getKey(), strings[1]);
                    isHave = false;
                }
            }
            if (isHave) {
                dictionaryMap.put(strings[0], strings[1]);
            }
        }
    }
    
    

    运行结果如下:


    image.png image.png

    有个小BUG,我也不知道原因,在运行时,TXT文件内容空了:


    image.png

    但是单词还是能查询到,所以影响也不大:


    image.png
    个人感觉代码太长太啰嗦了,因为主要是在别人的基础上改写的,不容易理解别人的思路,如果大家有更好的解决方法,欢迎交流~~

    相关文章

      网友评论

          本文标题:控制台实现微型词典_改版

          本文链接:https://www.haomeiwen.com/subject/ukramctx.html