Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
647 views
in Technique[技术] by (71.8m points)

collections - Java: Printing LinkedList without square brackets?

This is a fairly simple question. When you print out a LinkedList, like so:

System.out.println(list);

It prints it out, surrounding the list in square brackets like this:

[thing 1, thing 2, thing 3]

Is there a way I can print it out without the square brackets?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yes - iterate the list and print it (with comma after each, but the last element). However, there are utils to help:

Guava:

String result = Joiner.on(", ").join(list);

commons-lang:

String result = StringUtils.join(list, ", ");

And one note: don't rely on the .toString() method of any object. It is not meant for displaying the object to users, or to be used as a predefined format - it is meant mainly for debugging purposes.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...