How to combine two strings in Java? All Questions › Category: Java › How to combine two strings in Java? 0 Vote Up Vote Down chetan shidling asked 4 years ago I need short information. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago Use this code. public class Chetan { public static void main(String[] args) { String firstName = "Chetan "; String lastName = "Shidling"; String fullName = firstName + lastName; System.out.println(fullName); } }