show/hide this revision's text 2 Formatting and grammer

How to do you concatenate characters in java? Concatenating strings would only require a + between the strings, but concatenating chars using + will change the value of the char into ascii and hence giving a numerical output. I want to do System.out.println(char1+char2+char3...System.out.println(char1+char2+char3... and create a String word like this.

I could do System.out.print(char1) System.out.print(char2) System.out.print(char3)

System.out.print(char1);
System.out.print(char2);
System.out.print(char3);

But, this will only get me the characters in 1 line. I need it as a string. Any help would be appreciated.

Thanks

show/hide this revision's text 1

How to concatenate characters in java?

How to concatenate characters in java ? Concatenating strings would only require a + between the strings, but concatenating chars using + will change the value of the char into ascii and hence giving a numerical output. I want to do System.out.println(char1+char2+char3.... and create a String word like this. I could do System.out.print(char1) System.out.print(char2) System.out.print(char3) But, this will only get me the characters in 1 line. I need it as a string. Any help would be appreciated. Thanks