Open In App

Program to convert Java list of Strings to Seq in Scala

Last Updated : 14 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
A java list of Strings can be converted to sequence in Scala by utilizing toSeq method of Java in Scala. Here, we need to import Scala’s JavaConversions object in order to make this conversions work else an error will occur. Now, lets see some examples and then discuss how it works in details. Example:1#
Output:
Buffer(geeks, cs, portal)
Example:2#
Output:
Buffer(i, am an, author)

Next Article

Similar Reads