次のコードがあります。
ArrayList<String> idattributes=new ArrayList();
idattributes.add("7");
idattributes.add("10");
idattributes.add("12");
次のような文字列に変換しようとしています。
String listString = "";
for (String s : idattributes) {
listString += s + "\t";
}
System.out.println(listString);
I get: "7 10 12 "
これらの複数のスペースを削除するにはどうすればよいですか? 文字列 "7 10 12" が欲しいだけです idattributes を文字列に変換する他の良い方法はありますか? ありがとう