簡體   English   中英

從文本返回哈希圖的方法

[英]method to return hashmap from text

我正在嘗試編寫一個方法,該方法采用InputStream變量並將HashMap返回給main。 但是我一直在堅持如何返回HashMap的變量。 Java的新手,所以我不知道我在做什么錯。對於return語句:pairsCount無法解析為變量。 提前致謝。

private static Map<String, Integer> getHashMap(InputStream in)
{ 

    if (in != null) 
    {
        // Using a Scanner object to read one word at a time from the input stream.
        @SuppressWarnings("resource")
        Scanner sc = new Scanner(in);   
        String word;
        System.out.println(" - Assignment 1 -s%n%n\n");
        // Continue getting words until we reach the end of input 
        List<String> inputWords = new ArrayList<String>();

        while (sc.hasNext()) 
        {  
            word = sc.next();       
            if (!word.equals(null)) 
            {
                inputWords.add(word);
            }
        }
        Map<String, Integer> pairsCount = new HashMap<>();
        Iterator<String> it = inputWords.iterator();

        String currentWord = null;
        String previousWord = null;

        Integer wordCount = 0;
        while(it.hasNext())
        {
            currentWord = it.next();
            if( previousWord != null ) 
            {
                String key = previousWord.concat( "#" ).concat( currentWord );
            if( pairsCount.containsKey( key ) ) 
            {
              Integer lastCount = pairsCount.get( key );
              pairsCount.put( key, lastCount + 1 );
              wordCount = wordCount + lastCount;
            } 
            else 
            {
              pairsCount.put( key, 1 );
              wordCount =  1;
            }
         }
            previousWord = currentWord;     

     }

    }
    return (pairsCount);

}

這可能是因為變量pairsCount不在其范圍內。

您可以在if塊內定義它,但是嘗試將其返回到外部。

因此,請嘗試定義Map pairCount = new HashMap <>();。 在if之前(在!= null中)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM