-5

accountset List<AccountTO>の値を繰り返してに設定したいと思いAccountIDます。

実際にaccountset値を取得しています。値をに追加して設定し、サービス呼び出しに渡し100,101,102たいと思います。私ができること、または他の手順はありますか?List<AccounTO>AccountID

for(String s :group.getAccounts().keySet())
{
    System.out.println("===="+s.lastIndexOf("-"));
    System.out.println("sub"+s.substring(0,s.lastIndexOf("-")));
    accountSet.add(s.substring(0, s.lastIndexOf("-")));
}
4

1 に答える 1

1

質問を正しく理解していれば、かなり単純なはずです。

List<AssetAllocationTO> someList = new ArrayList<AssetAllocationTO>();

for (String string : group.getAccounts().keySet()){
            AssetAllocationTO al = new AssetAllocationTO();
            al.setAccountID(string);
            someList.add(al);
}
于 2012-05-08T22:11:25.457 に答える