// same X, Y value text.
TextInfo currXY = new TextInfo( text );
ArrayList<TextPosition> currTextArray = textComposition.get( currXY );
if( currTextArray != null ){
currTextArray.add( text );
} else {
ArrayList<TextPosition> newTextArray = new ArrayList<TextPosition>();
newTextArray.add( text );
if( textComposition.containsKey( currXY )){
System.out.println( "processTextPosition : containsKEy ");
}
textComposition.put( currXY , newTextArray );
}
AHashMap
不能有重复或相同的密钥,对吗?
我从 hashmap 中获取所有条目并将这些条目放入一个新的 hashmap 中。
它像同一把钥匙一样进行。
lineSortingMap = new HashMap< TextInfo, ArrayList<TextPosition> > ();
for ( Map.Entry< TextInfo, ArrayList<TextPosition> > entry : textComposition.entrySet() ) {
TextInfo key = (TextInfo)entry.getKey();
ArrayList<TextPosition> arrayTextPositions = entry.getValue();
if( lineSortingMap.containsKey( key ) ){
System.out.println("WTFcontainsKey : " + " " + key + " " + key.getX() + " " + key.getY() );
}
else{
lineSortingMap.put( key , arrayTextPositions );
}
}
结果:
WTFcontainsKey : analyzeSrc.TextInfo@4c5 75.307 603.85535
WTFcontainsKey : analyzeSrc.TextInfo@4c5 71.74238 603.85535
WTFcontainsKey : analyzeSrc.TextInfo@4c4 66.36187 612.82837
...
你能解释一下这里发生了什么吗?
为什么它不打印“processTextPosition : containsKey”?