[scala]错误:值_2不是String的成员

时间:2018-09-06 10:10:00

标签: scala apache-spark hadoop

首先,我在Windows上启动spark-shell,然后从本地读取文件

val res0 = sc.textFile("d:\\data\\testdatas\\heightinfo.txt")

然后我想获得第一列和第三列:

res0.flatMap(_.split("\t")).map(x => (x._2,x._0)).collect

在此之后我得到了错误:

value _2 is not a member of String

样本数据如下:

张三 男 180
李四 男 189
王五 男 167
赵六 男 170

如何解决这个问题?

0 个答案:

没有答案