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の一部である場合は、これを実行しても意味がありません。
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がある場合は、 join Collector と共にStream APIを使用できます。
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
クラスも役に立つかもしれません。
Apache Commonsへの参照はすべて問題ありません(そしてそれがほとんどの人が使用しているものです)が、 Guava と同等の Joiner にははるかに良いAPIがあると思います。
単純な結合の場合は、
Joiner.on(" and ").join(names)
しかし、簡単にnullを扱うこともできます。
Joiner.on(" and ").skipNulls().join(names);
または
Joiner.on(" and ").useForNull("[unknown]").join(names);
そして(私がcommons-langよりも優先して使うことに関係している限りは十分役に立つ)、Mapsを扱う能力:
Map<String, Integer> ages = .....;
String foo = Joiner.on(", ").withKeyValueSeparator(" is ").join(ages);
// Outputs:
// Bill is 25, Joe is 30, Betty is 35
これはデバッグなどに非常に便利です。
そのまま使用できるわけではありませんが、多くのライブラリは似ています。
コモンズラング:
org.Apache.commons.lang.StringUtils.join(list, conjunction);
春:
org.springframework.util.StringUtils.collectionToDelimitedString(list, conjunction);
On Android あなたは TextUtils classを使うことができます。
TextUtils.join(" and ", names);
いいえ、標準のJava APIにはそのような便利なメソッドはありません。
当然のことながら、Apache Commonsはそのようなことを StringUtilsクラスで 自分で書きたくない場合には/ /提供しています。
Java 8では3つの可能性があります。
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("");
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"));
私はこれを書きました(私はこれを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();
}
しかしCollection
はJSPによってサポートされていないので、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, ", ")}
JDKを外部ライブラリなしで使用したい場合は、自分の持っているコードがそれを実行する正しい方法です。 JDKで使用できる単純な「ワンライナー」はありません。
もしあなたが外部のライブラリを使うことができるのであれば、Apache Commonsライブラリの org.Apache.commons.lang.StringUtils classを調べることをお勧めします。
使用例
List<String> list = Arrays.asList("Bill", "Bob", "Steve");
String joinedResult = StringUtils.join(list, " and ");
それを達成するための正統な方法は、新しい関数を定義することです。
public static String join(String join, String... strings) {
if (strings == null || strings.length == 0) {
return "";
} else if (strings.length == 1) {
return strings[0];
} else {
StringBuilder sb = new StringBuilder();
sb.append(strings[0]);
for (int i = 1; i < strings.length; i++) {
sb.append(join).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とビルとボブとスティーブと[ビル]と1,2,3とアップル] [と〜、〜
あなたはStringUtilsクラスとjoinメソッドを持つApache commonsライブラリを使うことができます。
このリンクを確認してください。 https://commons.Apache.org/proper/commons-lang/javadocs/api.2.0/org/Apache/commons/lang/StringUtils.html
上のリンクは時間の経過とともに時代遅れになるかもしれないことに注意してください、その場合あなたはただ最新の参照を見つけることを可能にするはずである "Apache commons StringUtils"のためにウェブを検索することができます。
(このスレッドから参照) C#String.Format()およびString.Join()のJava版
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 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("\\]$", "");
お役に立てれば。
純粋なJDKでこれを行うための楽しい方法、1つの職務上の行:
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とビルとボブとスティーブと[ビル]と1,2,3とアップル] [
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コレクションのコミッターです。
あなたはApache Commons StringUtils join methodを試してみるとよいでしょう。
http://commons.Apache.org/lang/api/org/Apache/commons/lang/StringUtils.html#join(Java.util.Iterator 、Java.lang.String)
私はApache StringUtilsがjdkのゆるみを拾うことを発見しました;-)
GoogleのGuava APIにも.join()があります(他の回答からも明らかなように)が、ここではApache Commonsがほぼ標準です。
_編集_
私はまたtoString()
の基礎となる実装上の問題、そしてセパレータを含む要素についても気づきましたが、私は妄想的だと思った。
この点について2つのコメントがあるので、私は自分の答えを次のように変更しています。
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ファイル全体を追加したくないのであれば、これを使うことができます。
元のコードに問題はないと思います。実際には、みんなが提案している代替案はほぼ同じに見えます(ただし、追加の検証はいくつか行われています)。
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();
}
オープンソースに感謝します
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 "));
Java 8は
Collectors.joining(CharSequence delimiter, CharSequence prefix, CharSequence suffix)
これはnull値にprefix + suffix
を使用することによりnullsafeです。
次のように使用できます。
String s = stringList.stream().collect(Collectors.joining(" and ", "prefix_", "_suffix"))
Collectors.joining(CharSequence delimiter)
メソッドは内部的にjoining(delimiter, "", "")
を呼び出すだけです。
これは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();
}
}