当前位置: 首页 > 知识库问答 >
问题:

如何在数组中的每个元素末尾添加逗号[重复]

王才英
2023-03-14

在我的应用程序中,我希望使用此库来显示ArrayList项。
服务器中的ArrayList:

"genres": [
      "Action",
      " Comedy",
      " Family"
    ]

我为显示项编写了以下代码:

private String[] mostlyMatchedKeywordsStrings;
    private List<String> cloudChipList = new ArrayList<>();
mostlyMatchedKeywordsStrings = serialResponse.getData().getGenres();
                for (String str : mostlyMatchedKeywordsStrings) {
                    cloudChipList.add(str);
                    if (cloudChipList.size() > 0) {
                        infoSerialFrag_GenreChips.addChip(str);
                    }
                }

共有1个答案

倪阳飇
2023-03-14

您正在查找string.join()

List<String> foo = new ArrayList<>();
foo.add("foo");
foo.add("bar");
foo.add("baz");
System.out.println(String.join(", ", foo)); 
 类似资料: