Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use list stream arbitrary object List to concatenate strings

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is about how to use list stream arbitrary object List to concatenate strings. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Arbitrary object List stitching string

Data in List is often processed in development. A common method of processing is stitching. Each element in List is stitched into a String by a specific delimiter. In the past, we often used the following way:

String.join method

As shown below

Public static void main (String [] args) {List stringList = new ArrayList (); stringList.add ("a"); stringList.add ("d"); stringList.add ("k"); System.out.println (String.join (",", stringList);}

Although this method is easy to use, it has a drawback, that is, objects in List can only be characters or strings, so if it is other types of data or uncertain types of data, it cannot be processed directly.

Next, we will introduce a more convenient way to deal with it.

As follows:

Public static void main (String [] args) {List stringList = new ArrayList (); stringList.add ("a"); stringList.add ("d"); stringList.add ("k"); System.out.println (String.join (",", stringList)); List objectList = new ArrayList (); objectList.add (1L); objectList.add (10) ObjectList.add ("very convenient"); System.out.println (objectList.stream (). Map (Objects::toString) .customers (Collectors.joining ()); System.out.println (objectList.stream (). Map (Objects::toString) .requests (Collectors.joining (",")); System.out.println (objectList.stream (). Map (Objects::toString) .requests (Collectors.joining ("-") System.out.println (stringList.stream (). Map (Objects::toString) .requests (Collectors.joining ("-"));}

The List stream function allows you to convert any data type to String, and then use the Collectors.joining () method to concatenate elements in any form, which is really a convenient and simple way.

Stream stream merges strings, splicing strings List strings = Arrays.asList ("abc", "", "de", "efg", "abcd", "jkl"); String mergeString = strings.stream (). Filter (string->! string.isEmpty ()) .merge (Collectors.joining (",")); System.err.println ("merge string:" + mergeString)

Console output

Merge string: abc,de,efg,abcd,jkl

.stream converts data into stream streams

.filter field

Collectors.joining string concatenation collector (string concatenation)

Thank you for reading! On "how to use list stream arbitrary object List stitching string" this article shares here, I hope the above content can be of some help to you, so that you can learn more knowledge, if you think the article is good, you can share it out for more people to see it!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report