树Map(string,arraylist< string,int>)

ie3xauqp  于 2021-06-30  发布在  Java
关注(0)|答案(2)|浏览(366)

我正在尝试读取输入文件。输入文件的每个值都作为
如果单词不存在:将单词插入树Map,并将单词与arraylist(docid,count)关联。
如果单词出现在树Map中,则检查当前docid是否与arraylist匹配,然后增加计数。
这个
对于arraylist,我创建了另一个类,如下所示:

public class CountPerDocument
{
    private final String documentId;
    private final int count;

    CountPerDocument(String documentId, int count)
    {

        this.documentId = documentId;
        this.count = count;
    }

    public String getDocumentId()
    {
        return this.documentId;
    }

    public int getCount()
    {
        return this.count;
    }

}

之后,我尝试将树Map打印到一个文本文件中,作为不确定我在这里做错了什么,但是我得到的输出如下:

The Stem is todai:[CountPerDocument@5caf905d, CountPerDocument@27716f4, CountPerDocument@8efb846, CountPerDocument@2a84aee7, CountPerDocument@a09ee92, CountPerDocument@30f39991]

想知道是否有人能指导我做错了什么,如果我的方法不正确,我该怎么办?

public class StemTreeMap
{
    private static final String r1 = "\\$DOC";
    private static final String r2 = "\\$TITLE";
    private static final String r3 = "\\$TEXT";
    private static Pattern p1,p2,p3;
    private static Matcher m1,m2,m3;

    public static void main(String[] args)
    {
        BufferedReader rd,rd1;
        String docid = null;
        String id;
        int tf = 0;
        //CountPerDocument cp = new CountPerDocument(docid, count);
        List<CountPerDocument> ls = new ArrayList<>();
        Map<String,List<CountPerDocument>> mp = new TreeMap<>();

        try
        {
            rd = new BufferedReader(new FileReader(args[0]));
            rd1= new BufferedReader(new FileReader(args[0]));
            int docCount = 0;
            String line = rd.readLine();
            p1 = Pattern.compile(r1);
            p2 = Pattern.compile(r2);
            p3 = Pattern.compile(r3);
            while(line != null)
            {
                m1 = p1.matcher(line);
                m2 = p2.matcher(line);
                m3 = p3.matcher(line);
                if(m1.find())
                {
                    docid = line.substring(5, line.length());
                    docCount++;
                    //System.out.println("The Document ID is :");
                    //System.out.println(docid);
                    line = rd.readLine();
                }
                if(m2.find()||m3.find())
                {
                    line = rd.readLine();

                }
                else
                {
                    if(!(mp.containsKey(line))) // if the stem is not on the TreeMap
                    {
                        //System.out.println("The stem is not present in the tree");
                        tf = 1;
                        ls.add(new CountPerDocument(docid,tf));
                        mp.put(line, ls);   
                        line = rd.readLine();
                    }
                    else
                    {
                        if(ls.indexOf(docid) > 0) //if its last entry matches the current document number
                        {
                            //System.out.println("The Stem is present for the same docid so incrementing docid");
                            tf = tf+1;
                            ls.add(new CountPerDocument(docid,tf));
                            line = rd.readLine();
                        }
                        else
                        {
                            //System.out.println("Stem is present but not the same docid so inserting new docid");
                            tf = 1;
                            ls.add(new CountPerDocument(docid,tf)); //set did to the current document number and tf to 1
                            line = rd.readLine();
                        }
                    }

                }

            }
            rd.close();
            System.out.println("The Number of Documents in the file is:"+ docCount);

            //Write to an output file
            String l = rd1.readLine();
            File f = new File("dictionary.txt");
            if (f.createNewFile())
            {
                System.out.println("File created: " + f.getName());
            }
            else 
            {
                System.out.println("File already exists.");
                Path path = Paths.get("dictionary.txt");
                Files.deleteIfExists(path);
                System.out.println("Deleted Existing File:: Creating New File");
                f.createNewFile();    
            }
            FileWriter fw = new FileWriter("dictionary.txt");
            fw.write("The Total Number of Stems: " + mp.size() +"\n");

            fw.close();
            System.out.println("The Stem is todai:" + mp.get("todai"));

        }catch(IOException e)
        {
            e.printStackTrace();
        }

    }

}
ar5n3qh5

ar5n3qh51#

您没有在类countperdocument中定义函数string tostring()。因此,当您尝试打印countperdocument变量时,默认打印值是countperdocument@hashcode.
要决定如何在代码中表示countperdocument变量,请在类中添加下一个函数:

@Override
public String toString() {
     return "<" + this.getDocumentId() + ", " + this.getCount() + ">";
}
a5g8bdjr

a5g8bdjr2#

尝试重写countperdocument中的tostring方法。像这样:

public class CountPerDocument
{
    private final String documentId;
    private final int count;

    CountPerDocument(String documentId, int count)
    {

        this.documentId = documentId;
        this.count = count;
    }

    public String getDocumentId()
    {
        return this.documentId;
    }

    public int getCount()
    {
        return this.count;
    }

    @Override
    public String toString() {
        return documentId + "-" + count;
    }
}

相关问题