我有一个清单如下
[url1,url2,url3,url4]
该列表将基于 HTML 下拉列表中的多项选择。所以列表大小,即列表元素动态变化。我的问题是我无法获得获取字符串单引号的逻辑。我希望上面的字符串列表显示为
'url1','url2','url3','url4'
即'
每个字符串的单引号 ( ) 和逗号 ( ,
) 不应被删除。请帮助我如何使用 Java 实现这一目标。
对于列表,您可以通过 Java 8 转换它
list.stream().collect(Collectors.joining("','", "'", "'"));
import org.apache.commons.lang.StringUtils;
...
...
String arr[] = new String[4];
arr[0] = "my";
arr[1] = "name";
arr[2] = "is";
arr[3] = "baybora";
String join = "'" + StringUtils.join(arr,"','") + "'";
结果:
'my','name','is','baybora'
您可以使用 Java 8 实用程序类java.util.StringJoiner
。
该类专门介绍了格式化字符串值列表。
例如:
StringJoiner joiner = new StringJoiner("','", "'", "'");
joiner.add("url1");
joiner.add("url2");
joiner.add("url3");
joiner.add("url4");
System.out.println(joiner);
输出
'url1','url2','url3','url4'
请注意,在 的构造函数中StringJoiner
,
StringJoiner(CharSequence delimiter, CharSequence prefix, CharSequence suffix)
我们将单引号作为前缀和后缀传递以满足您的特定要求。
使用 Java 8 流:
String[] array = {"url1", "url2", "url3", "url4"}
Stream.of(array).collect(Collectors.joining("','", "'", "'"));
迭代列表(for/while)。
对于列表中的每个元素追加<element-of-list>
。提示:append()
使用StringBuilder
.
截断/子串列表以删除添加的最后一个元素。提示:在String
类上使用子字符串。
最快速有效的方法
前任。
ArrayList<String> a=[url1,url2,url3,url4];
String s ="'"+a.toString().replace("[","").replace("]", "").replace(" ","").replace(",","','")+"'";
拥有一个 Util.java 文件,或者如果您已经拥有所有常见的 util 文件,则只需添加这些静态方法
单引号
public static String singleQuote(String str) {
return (str != null ? "'" + str + "'" : null);
}
对于双引号
public static String doubleQuotes(String str) {
return (str != null ? "\"" + str + "\"" : null);
}
如果您将元素放在数组中,则可以执行以下操作:
import java.util.ArrayList;
class Test1{
public static void main(String[] args) {
String[] s = {"url1","url2","url3","url4"};
ArrayList<String> sl = new ArrayList<String>();
for (int i = 0; i < s.length; i++) {
sl.add("'" + s[i] + "'");
}
}
}
尝试这个
String[] str = {"url1","url2","url3","url4"};
ArrayList<String> strList = new ArrayList<String>();
for (String k:str)
strList.add("'" +k+ "'");
System.out.println("Printing the list");
for(String k:strList)
System.out.println(k);
您还可以使用 Java8 内置功能进行字符串连接,并使用第三方库将每个字符串括在引号中。
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.util.StringUtils;
import java.util.ArrayList;
import java.util.List;
import java.util.StringJoiner;
@RunWith(MockitoJUnitRunner.class)
public class StringJoinerTest {
@Test
public void testStringJoiner() {
//init test data
String s1 = "team1";
String s2 = "team2";
List<String> teams = new ArrayList<>(2);
teams.add(s1);
teams.add(s2);
//configure StringJoiner
//when some values will be added to joiner it will return string started with prefix "(" an finished with suffix ")"
//between prefix and suffix values will be separated with delimiter ", "
StringJoiner teamNames = new StringJoiner(", ", "(", ")");
//if nothing has been added to the joiner it will return this value ('')
teamNames.setEmptyValue("(\'\')");
//fill joiner with data
for (String currentString : teams) {
//if you need to wrap each string in single quotes you can do this via org.apache.commons.lang3.StringUtils#wrap
// or org.springframework.util.StringUtils#quote
teamNames.add(StringUtils.quote(currentString));
}
System.out.println(teamNames.toString());
}
}