복붙노트

[HADOOP] Hadoop에서 String 객체를 IntWritable 객체로 변환하는 방법

HADOOP

Hadoop에서 String 객체를 IntWritable 객체로 변환하는 방법

나는 String 객체를 Hadoop의 IntWritable 객체로 변환하려고한다. 모든 프로세스를 변환 할 수 있습니다.

감사

해결법

  1. ==============================

    1.

    IntWritable value = new IntWritable(Integer.parseInt(someString))
    

    ... 그리고 parseInt가 NumberFormatException을 throw 할 가능성을 처리합니다.

    누군가가 물었다 :

    당신은 그것을 잡아 당연히 그것을 취급! Java 예외 및 예외 처리는 Oracle Java Tutorials - here에서 설명합니다.

  2. from https://stackoverflow.com/questions/19425949/how-to-convert-string-object-to-intwritable-object-in-hadoop by cc-by-sa and MIT license