Data Type Java

import java.util.Date;
import org.apache.commons.lang.StringUtils;
 
public class Main {
    public static void main(String[] args) {
        String helloHtml = "" +
                "" +
                "   Hello World from Java" +
                "" +
                "Hello, today is: " + new Date() +
                "" +
                "";
        
        String title = StringUtils.substringBetween(helloHtml, "", "");
        String content = StringUtils.substringBetween(helloHtml, "", "");
        
        System.out.println("title = " + title);
        System.out.println("content = " + content);
    }
}