如何比较我输入的字符串并使用向量Java比较文本文件中的字符串?

时间:2012-07-08 14:23:19

标签: java string vector

假设文本文件包含:

  

他是个男孩   她生病了。
  阿里在玩   我们正在吃饭。
  狗在吠叫   他和他的兄弟正在奔跑   他在玩。

我想将字符串分开比较如下:

  

他是   是一个   一个男孩   男孩   她是   生病了   生病了。

等等。

我已将上述所有单词放入向量中。如何与我输入的字符串进行比较?

假设方式是这样的: 输入字符串:He is a boy .

来自输入字符串的

He is,并希望通过查找向量中出现的时间来与向量进行比较。

这就是我的尝试:

try{
    // Open the file that is the first 
    // command line parameter
    FileInputStream fstream = new FileInputStream("textfile.txt");

    // Get the object of DataInputStream
    DataInputStream in = new DataInputStream(fstream);
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    String strLine;
    int lineNum = 0;

    Vector text= new Vector();
    Enumeration vtext = text.elements();

    //Read File Line By Line
    while ((strLine = br.readLine()) != null)   {
        // Print the content on the console
        //System.out.println (strLine);
        lineNum++;

        String[] words = strLine.split("\\s+");

        //System.out.println(words[0]);
        for (int i = 0, l = words.length; i + 1 < l; i++){
            text.addElement(words[i] + " " + words[i + 1]);
        }       
    }
    String str23 = "She is"; 
    while(vtext.hasMoreElements()){
        String yy = "He is";
        if(text.contains(yy)){
            System.out.println("Vector contains 3."); 
        }
        System.out.print(vtext.nextElement() + " "); 
        System.out.println(); 
    }       
    System.out.println(text);
    System.out.println(lineNum);

    //Close the input stream
    in.close();
}catch (Exception e){  //Catch exception if any
    System.err.println("Error: " + e.getMessage());
}

1 个答案:

答案 0 :(得分:0)

这可能是浪费时间回答 - 但这里有:

我将你的循环改为:

String str23 = "She is"; 
int countOfHeIs = 0;
String yy = "He is";
while(vtext.hasMoreElements()){

    if (vtext.nextElement().equals(yy))
    {
        countOfHeIs++;
    }
    if(text.contains(yy)){
        System.out.println("Vector contains 3."); 
    }
    System.out.print(vtext.nextElement() + " "); 
    System.out.println(); 
}       
System.out.println(text);
System.out.println(lineNum);
System.out.printf("'%s' appears %d times\n", yy, countOfHeIs);

方法contains不计算外观 - 它只给你一个是/否指示 - 你应该自己计算出现的数量。

这不是解决您问题的最佳解决方案 - 因为Vector不是最佳选择。我建议使用Map<String,Integer>来跟踪每个字符串的出现次数。