本文介绍了如何将String对象转换为Hadoop中的IntWritable对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Hadoop中将 String 对象转换为 IntWritable Object。
任何进程都可以进行转换。

谢谢

解决方案
  IntWritable value = new IntWritable(Integer.parseInt(someString))

...并处理 parseInt 可能会抛出 NumberFormatException 的可能性。






有人问:

你抓住它并且处理它当然! Java异常和异常处理在Oracle Java教程中描述 - here


I want to convert String object to IntWritable Object in Hadoop.any process is available for conversion.

Thanks

解决方案
IntWritable value = new IntWritable(Integer.parseInt(someString))

... and deal with the possibility that parseInt may throw a NumberFormatException.


Someone asked:

You catch it and handle it of course! Java exceptions and exception handling are described in the Oracle Java Tutorials - here.

这篇关于如何将String对象转换为Hadoop中的IntWritable对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 23:19