コードは次のとおりです。
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "<html>" +
" <head>" +
" <title>" +
" %s" +
" </title>" +
" </head>" +
" <body>" +
" %s" +
" </body>" +
" </html>";
String str1 = String.format(str, "Home","Hallo");
System.out.println(str1);
}
str1
次のように印刷したい
//The str1 should need to print like this
<html>
<head>
<title>
Home
</title>
</head>
<body>
Hallo
</body>
</html>
これは可能ですか?