0

2 つの一連のデータ (コロンで区切られた :) をメソッドに渡し、それが Custom クラス CountryDTO 内に設定されることを期待しています

これは私の CountryDTO クラスです

public class CountryDTO {

    public CountryDTO(String a , String b , String c)
    {

    }
public String value1;
public String value2;
public String value3;

// setters and getters 

}



This is my Main class 

public class Test {

    public static void main(String args[]) throws Exception {

        Test test = new Test();
        List list = (List) test.extract("IND,US,UK : WI,PAK,AUS");

        Iterator itr = list.iterator();

        while (itr.hasNext()) {
            CountryDTO ind = (CountryDTO) itr.next();
            System.out.println(ind.getValue1());
        }
    }

    public List<CountryDTO> extract(final String v) throws Exception {
        String[] values = v.split(":");
        List<CountryDTO> l = new ArrayList<CountryDTO>();
        for (String s : values) {
            String[] vs = s.split(",");
            l.add(new CountryDTO(vs[0], vs[1], vs[2]));
        }
        return l;
    }
}

何が起こっているかというと、null として出力されています (CountryDTO が設定されていません)

誰でも私を助けてくれませんか

4

2 に答える 2

3

CountryDtoコンストラクターではvalue1、、または他の値を設定することはないため、それらは残りnullます。

于 2012-08-13T10:15:34.850 に答える
3

申し訳ありませんが、DTOが正しくありません。私はそれがこのように見えるべきだと思います:

public class CountryDTO {

    private final String value1;
    private final String value2;
    private final String value3;

    public CountryDTO(String a , String b , String c) {
        this.value1 = ((a != null) ? a : "");
        this.value2 = ((b != null) ? b : "");
        this.value3 = ((c != null) ? c : "");
    }

    // just getters; no setters 

}

あなたのコードが間違っているかもしれない他のことについて話すことはできませんが、これは確かにオフベースです。

于 2012-08-13T10:16:04.333 に答える