Java:将 List<String> 转换为 join()d String
Posted
技术标签:
【中文标题】Java:将 List<String> 转换为 join()d String【英文标题】:Java: convert List<String> to a join()d String 【发布时间】:2010-12-17 15:13:32 【问题描述】:javascript 有Array.join()
js>["Bill","Bob","Steve"].join(" and ")
Bill and Bob and Steve
Java 有这样的东西吗?我知道我可以用StringBuilder
自己拼凑一些东西:
static public String join(List<String> list, String conjunction)
StringBuilder sb = new StringBuilder();
boolean first = true;
for (String item : list)
if (first)
first = false;
else
sb.append(conjunction);
sb.append(item);
return sb.toString();
.. 但是如果类似的东西已经是 JDK 的一部分,那么这样做是没有意义的。
【问题讨论】:
对于lists也可以查看这个问题 不严格相关,但 android 有一个内置的 join 函数作为其 TextUtils 类的一部分:developer.android.com/reference/android/text/…, java.lang.Iterable) Java 8 有一个String.join()
方法。如果您使用的是 Java 8(或更高版本)***.com/a/22577565/1115554,请查看此答案
【参考方案1】:
使用 Java 8,您无需任何第三方库即可做到这一点。
如果你想加入一个字符串集合,你可以使用新的String.join() 方法:
List<String> list = Arrays.asList("foo", "bar", "baz");
String joined = String.join(" and ", list); // "foo and bar and baz"
如果您有一个不是 String 类型的 Collection,您可以使用 Stream API 和 joining Collector:
List<Person> list = Arrays.asList(
new Person("John", "Smith"),
new Person("Anna", "Martinez"),
new Person("Paul", "Watson ")
);
String joinedFirstNames = list.stream()
.map(Person::getFirstName)
.collect(Collectors.joining(", ")); // "John, Anna, Paul"
StringJoiner
类也可能有用。
【讨论】:
不幸的是,String.join 只接受 CharSequences 而不是人们希望的对象。甚至不确定它是否为 nullsafe @MarcassertThat(String.join(", ", Lists.newArrayList("1", null)), is("1, null"));
StringJoiner 特别有用,如果你想加入像 [a, b, c]
这样的东西,包括大括号。
@Marc String.join 也接受Iterable<CharSequence>
;接口关系:Iterable -> Collection -> List
【参考方案2】:
所有对 Apache Commons 的引用都很好(这是大多数人使用的),但我认为 Guava 等效项 Joiner 具有更好的 API。
您可以使用
进行简单的连接案例Joiner.on(" and ").join(names)
还能轻松处理空值:
Joiner.on(" and ").skipNulls().join(names);
或
Joiner.on(" and ").useForNull("[unknown]").join(names);
和(就我而言,使用它而不是 commons-lang 足够有用),处理地图的能力:
Map<String, Integer> ages = .....;
String foo = Joiner.on(", ").withKeyValueSeparator(" is ").join(ages);
// Outputs:
// Bill is 25, Joe is 30, Betty is 35
这对于调试等非常有用。
【讨论】:
感谢插件!我们的 Joiner 还为您提供了直接附加到 Appendable(例如 StringBuilder 或任何 Writer)的选项,而无需创建 Apache 库似乎缺乏的中间字符串。 这很好,但是您能添加一个.useForLastSeparator()
或类似的方法吗?这样,您可以仅在最后两个项目之间获得类似“,”和“”的内容(其余部分使用“,”)。
是的,它是线程安全的。唯一保存在连接器中的状态是separator
(即final
)。我在 Guava 中看到的所有东西,我曾经使用 Apache Commons 等价物在 Guava 中都好得多(阅读:更清洁、更快、更安全、更健壮),边缘案例故障和线程安全问题更少,并且更小的内存占用。到目前为止,他们的“可能的最佳方式”指导原则似乎是正确的。
如果您需要采取相反的方向(即,将字符串拆分为多个部分),请查看 Guava 类 Splitter - 设计/实现也非常好。
在 Java 8 中,有一个 String.join()
方法和一个 StringJoiner
类。【参考方案3】:
不是开箱即用的,但许多库都有类似的:
Commons 朗:
org.apache.commons.lang.StringUtils.join(list, conjunction);
春天:
org.springframework.util.StringUtils.collectionToDelimitedString(list, conjunction);
【讨论】:
【参考方案4】:在 Android 上,您可以使用 TextUtils 类。
TextUtils.join(" and ", names);
【讨论】:
我在找这个。String.join
在 android 上需要 min api level 26。【参考方案5】:
不,标准 Java API 中没有这样的便捷方法。
毫不奇怪,Apache Commons 提供了这样的东西in their StringUtils class,以防你不想自己写。
【讨论】:
String 有拆分但没有连接,这一直困扰着我。在某种程度上它是有道理的,但令人讨厌的是在 String 中至少没有一个静态方法。 我和你在一起,Bemrose。至少他们给了我们一个isEmpty()
方法而不是String
中的(静态)join()
方法... :rollseyes: :)【参考方案6】:
Java 8 中的三种可能性:
List<String> list = Arrays.asList("Alice", "Bob", "Charlie")
String result = String.join(" and ", list);
result = list.stream().collect(Collectors.joining(" and "));
result = list.stream().reduce((t, u) -> t + " and " + u).orElse("");
【讨论】:
【参考方案7】:使用 java 8 收集器,可以使用以下代码完成:
Arrays.asList("Bill", "Bob", "Steve").stream()
.collect(Collectors.joining(" and "));
另外,java 8 中最简单的解决方案:
String.join(" and ", "Bill", "Bob", "Steve");
或
String.join(" and ", Arrays.asList("Bill", "Bob", "Steve"));
【讨论】:
【参考方案8】:我写了这个(我用它来做bean并利用toString
,所以不要写Collection<String>
):
public static String join(Collection<?> col, String delim)
StringBuilder sb = new StringBuilder();
Iterator<?> iter = col.iterator();
if (iter.hasNext())
sb.append(iter.next().toString());
while (iter.hasNext())
sb.append(delim);
sb.append(iter.next().toString());
return sb.toString();
但 JSP 不支持 Collection
,所以对于 TLD,我写道:
public static String join(List<?> list, String delim)
int len = list.size();
if (len == 0)
return "";
StringBuilder sb = new StringBuilder(list.get(0).toString());
for (int i = 1; i < len; i++)
sb.append(delim);
sb.append(list.get(i).toString());
return sb.toString();
并放入.tld
文件:
<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.1" xmlns="http://java.sun.com/xml/ns/javaee"
<function>
<name>join</name>
<function-class>com.core.util.ReportUtil</function-class>
<function-signature>java.lang.String join(java.util.List, java.lang.String)</function-signature>
</function>
</taglib>
并在 JSP 文件中将其用作:
<%@taglib prefix="funnyFmt" uri="tag:com.core.util,2013:funnyFmt"%>
$funnyFmt:join(books, ", ")
【讨论】:
建议将Collection<>
更改为Iterable<>
?
@JasonS +1。好点,但请阅读***.com/questions/1159797/…【参考方案9】:
如果您想在没有任何外部库的情况下使用 JDK,那么您拥有的代码是正确的方法。没有可以在 JDK 中使用的简单“单线”。
如果您可以使用外部库,我建议您查看 Apache Commons 库中的 org.apache.commons.lang.StringUtils 类。
使用示例:
List<String> list = Arrays.asList("Bill", "Bob", "Steve");
String joinedResult = StringUtils.join(list, " and ");
【讨论】:
【参考方案10】:实现它的一种正统方法是定义一个新函数:
public static String join(String joinStr, String... strings)
if (strings == null || strings.length == 0)
return "";
else if (strings.length == 1)
return strings[0];
else
StringBuilder sb = new StringBuilder(strings.length * 1 + strings[0].length());
sb.append(strings[0]);
for (int i = 1; i < strings.length; i++)
sb.append(joinStr).append(strings[i]);
return sb.toString();
示例:
String[] array = new String[] "7, 7, 7", "Bill", "Bob", "Steve",
"[Bill]", "1,2,3", "Apple ][","~,~" ;
String joined;
joined = join(" and ","7, 7, 7", "Bill", "Bob", "Steve", "[Bill]", "1,2,3", "Apple ][","~,~");
joined = join(" and ", array); // same result
System.out.println(joined);
输出:
7, 7, 7 and Bill and Bob and Steve and [Bill] and 1,2,3 and Apple ][ and ~,~
【讨论】:
为方法参数提供与方法本身相同的名称可能不是最好的主意。separator
会更有启发性。【参考方案11】:
java.util.StringJoiner
的 Java 8 解决方案
Java 8 有一个 StringJoiner
类。但是你仍然需要编写一些样板文件,因为它是 Java。
StringJoiner sj = new StringJoiner(" and ", "" , "");
String[] names = "Bill", "Bob", "Steve";
for (String name : names)
sj.add(name);
System.out.println(sj);
【讨论】:
如果你使用更方便的方法String.join(),你不需要写一点样板。【参考方案12】:您可以使用具有 StringUtils 类和 join 方法的 apache commons 库。
查看此链接:https://commons.apache.org/proper/commons-lang/javadocs/api.2.0/org/apache/commons/lang/StringUtils.html
请注意,上面的链接可能会随着时间的推移而过时,在这种情况下,您可以在网上搜索“apache commons StringUtils”,它应该可以让您找到最新的参考。
(引用自该线程) Java equivalents of C# String.Format() and String.Join()
【讨论】:
【参考方案13】:你可以这样做:
String aToString = java.util.Arrays.toString(anArray);
// Do not need to do this if you are OK with '[' and ']'
aToString = aToString.substring(1, aToString.length() - 1);
或单行(仅当您不想要 '[' 和 ']' 时)
String aToString = java.util.Arrays.toString(anArray).substring(1).replaceAll("\\]$", "");
希望这会有所帮助。
【讨论】:
这不会附加选择的连词。 哎呀!!对不起,我没有发现。【参考方案14】:配合java 1.8 stream可以使用,
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
List<String> list = Arrays.asList("Bill","Bob","Steve").
String str = list.stream().collect(Collectors.joining(" and "));
【讨论】:
【参考方案15】:使用纯 JDK 的一种有趣方式,在一个职责范围内:
String[] array = new String[] "Bill", "Bob", "Steve","[Bill]","1,2,3","Apple ][" ;
String join = " and ";
String joined = Arrays.toString(array).replaceAll(", ", join)
.replaceAll("(^\\[)|(\\]$)", "");
System.out.println(joined);
输出:
比尔和鲍勃和史蒂夫和 [比尔] 和 1,2,3 和苹果 ][
一种不太完美也不太有趣的方式!
String[] array = new String[] "7, 7, 7","Bill", "Bob", "Steve", "[Bill]",
"1,2,3", "Apple ][" ;
String join = " and ";
for (int i = 0; i < array.length; i++) array[i] = array[i].replaceAll(", ", "~,~");
String joined = Arrays.toString(array).replaceAll(", ", join)
.replaceAll("(^\\[)|(\\]$)", "").replaceAll("~,~", ", ");
System.out.println(joined);
输出:
7, 7, 7 和 Bill 和 Bob 和 Steve 和 [Bill] 和 1,2,3 和 Apple ][
【讨论】:
尝试使用“[Bill]”、“1,2,3”和“Apple ][”。有创意,但有不正确的情况。 现在用“~,~”试试。你不能用这种架构制作一个完全防弹的程序。 是的,我知道...我已经删除了反对票。但是您应该更仔细地考虑在这里发布答案,特别是对于像这样的问题已经有几年的历史了。答案不仅对原始海报立即有用,而且还会出现在 Google 搜索中。 (事实上,对于几年前的问题,新答案可能对原始发帖者没有价值。)有缺陷或错误的解决方案可能对后来断章取义的人造成伤害。 我在这里从其他类似我的帖子中学到了很多东西,虽然没有完美的解决方案,但知识非常丰富,而且思想丰富。为他人放松,每个人都必须了解他们的每一行代码的作用。请记住,编程就像一门艺术,甚至每一行代码都意味着程序员的个性。是的,我不会在生产中使用此代码!【参考方案16】:你可能想试试 Apache Commons StringUtils join 方法:
http://commons.apache.org/lang/api/org/apache/commons/lang/StringUtils.html#join(java.util.Iterator, java.lang.String)
我发现 Apache StringUtils 弥补了 jdk 的不足 ;-)
【讨论】:
【参考方案17】:如果您使用Eclipse Collections(以前的GS Collections),则可以使用makeString()
方法。
List<String> list = Arrays.asList("Bill", "Bob", "Steve");
String string = ListAdapter.adapt(list).makeString(" and ");
Assert.assertEquals("Bill and Bob and Steve", string);
如果您可以将 List
转换为 Eclipse Collections 类型,那么您可以摆脱适配器。
MutableList<String> list = Lists.mutable.with("Bill", "Bob", "Steve");
String string = list.makeString(" and ");
如果你只想要一个逗号分隔的字符串,你可以使用不带参数的makeString()
版本。
Assert.assertEquals(
"Bill, Bob, Steve",
Lists.mutable.with("Bill", "Bob", "Steve").makeString());
注意:我是 Eclipse Collections 的提交者。
【讨论】:
【参考方案18】:编辑
我还注意到 toString()
底层实现问题,以及包含分隔符的元素,但我认为我是偏执狂。
由于我在这方面有两个 cmet,我将我的答案更改为:
static String join( List<String> list , String replacement )
StringBuilder b = new StringBuilder();
for( String item: list )
b.append( replacement ).append( item );
return b.toString().substring( replacement.length() );
这看起来与原始问题非常相似。
所以如果你不想将整个 jar 添加到你的项目中,你可以使用它。
我认为您的原始代码没有任何问题。实际上,每个人都建议的替代方案看起来几乎相同(尽管它做了一些额外的验证)
在这里,还有Apache 2.0 license.
public static String join(Iterator iterator, String separator)
// handle null, zero and one elements before building a buffer
if (iterator == null)
return null;
if (!iterator.hasNext())
return EMPTY;
Object first = iterator.next();
if (!iterator.hasNext())
return ObjectUtils.toString(first);
// two or more elements
StringBuffer buf = new StringBuffer(256); // Java default is 16, probably too small
if (first != null)
buf.append(first);
while (iterator.hasNext())
if (separator != null)
buf.append(separator);
Object obj = iterator.next();
if (obj != null)
buf.append(obj);
return buf.toString();
现在我们知道了,谢谢开源
【讨论】:
这现在可以工作了,但你不能确定 List.toString() 将来会如何表现。除了打印有关所讨论对象的一些信息字符串之外,我永远不会相信 toString() 操作。为您辩护,您不是唯一提出此解决方案的人。 如果列表中某个元素的内容包含子字符串", "
怎么办?
@Hans & @Bart:你是对的。我以为没有人会注意到:P 我正在改变我的答案。
这取决于用例。出于调试目的 toString() 就可以了,IMO ...只要您不依赖特定的格式。即便如此,如果您为代码编写测试,任何未来的更改都会被捕获。【参考方案19】:
Google 的 Guava API 也有 .join(),虽然(其他回复应该很明显),Apache Commons 几乎是这里的标准。
【讨论】:
【参考方案20】:Java 8 确实带来了
Collectors.joining(CharSequence delimiter, CharSequence prefix, CharSequence suffix)
方法,即通过将prefix + suffix
用于空值来实现空值安全。
可以通过以下方式使用:
String s = stringList.stream().collect(Collectors.joining(" and ", "prefix_", "_suffix"))
Collectors.joining(CharSequence delimiter)
方法只是在内部调用joining(delimiter, "", "")
。
【讨论】:
【参考方案21】:您可以在 Spring Framework 的 StringUtils 中使用它。我知道它已经被提到过,但实际上你可以直接使用这段代码,它会立即运行,而不需要 Spring。
// from https://github.com/spring-projects/spring-framework/blob/master/spring-core/src/main/java/org/springframework/util/StringUtils.java
/*
* Copyright 2002-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
public class StringUtils
public static String collectionToDelimitedString(Collection<?> coll, String delim, String prefix, String suffix)
if(coll == null || coll.isEmpty())
return "";
StringBuilder sb = new StringBuilder();
Iterator<?> it = coll.iterator();
while (it.hasNext())
sb.append(prefix).append(it.next()).append(suffix);
if (it.hasNext())
sb.append(delim);
return sb.toString();
【讨论】:
【参考方案22】:另一种解决方案,它是另一个answer的变体
public static String concatStringsWSep(Iterable<String> strings, String separator)
Iterator<String> it = strings.iterator();
if( !it.hasNext() ) return "";
StringBuilder sb = new StringBuilder(it.next());
while( it.hasNext())
sb.append(separator).append(it.next());
return sb.toString();
【讨论】:
【参考方案23】:试试这个:
java.util.Arrays.toString(anArray).replaceAll(", ", ",")
.replaceFirst("^\\[","").replaceFirst("\\]$","");
【讨论】:
可能是因为问题要求使用列表与数组? 耸耸肩 因为如果你的字符串中有一个 ", " 它将不起作用。以上是关于Java:将 List<String> 转换为 join()d String的主要内容,如果未能解决你的问题,请参考以下文章
Java:将 List<String> 转换为 join()d String
如何将地图 List<Map<String, String>> myList 列表转换为 Java 中的 Spark Dataframe?