私のカウンター値は毎回上書きされています。値をインクリメントし続ける方法がわかりません。これはマップです コードを減らします。profileId でカウンターの値を設定する必要があります。ありがとう
public void map(Object key, Text value, Context context) throws IOException, InterruptedException {
String profile;
String pos = null;
int count=0;
StringTokenizer inputKey=new StringTokenizer(value.toString()," ,");
while(inputKey.hasMoreTokens()) {
String input=inputKey.nextToken();
System.out.println("the input is "+ input);
if(!input.endsWith("</id>")) {
textInput.set(input);
count++;
System.out.println("value of count is " + count);
} else {
profile=input.substring(4,15);
profileId.set(profile);
}
/*count=+count;
int index=value.toString().indexOf(count);
pos=Integer.toString(index);
System.out.println("the position is " + pos);
*/
System.out.println("the index for each word is " + pos );
context.write(textInput, new Text(profileId + ", " + pos));
}
}