The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
October 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

concatenation of characters to from string

Posted by Nitin Mishra on October 30, 2001 at 6:25 AM

Try this out..........this is how u can get string concatenated

public class Test
{
public static void main(String[] args)
{
char cFirstChar = 'a';
char cSecondChar = 'b';
char cThirdChar = 'c';
String oStr3Concatenated = String.valueOf(cFirstChar) + String.valueOf(cSecondChar) +String.valueOf(cThirdChar);
System.out.println("The String value is " + oStr3Concatenated);
}

}



Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us