任何人都知道如何跳过MapReduce中输入文本文件的第一行?例如,我有一个以下输入文件:
Student Score
00001 90
00002 95
00003 90
.
.
.
现在,我想计算每个分数的频率。但我必须跳过第一行,即标题(学生,分数),对吧?我怎样才能做到这一点?相反,如果我想在MapReduce(分数,频率)的输出文件中添加标题行,我该怎么做?提前谢谢!
答案 0 :(得分:-3)
import java.util.Scanner;
import java.io.*;
public class MyNameSpace{
public static void main(String[] args)
{
try
{
Scanner c=new Scanner(new FileInputStream("filepath"));
c.nextLine();//this gets the next line, since not assigning it to anything it just skips , if you want it, assign it to a string and use it
//now read what you want to read
c.close();
}
catch(FileNotFoundException e)
{
//process exception here
}
}
}
无论如何,我希望在你的问题上找到谷歌的很多答案,所以在问这里之前要做很多的搜索工作。