Advertisement
jtentor

Cadena de texto estática

Sep 27th, 2021
1,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.  
  2.     static private String htmlText = "<!DOCTYPE html>\n" +
  3. "<html>\n" +
  4. "<head>\n" +
  5. "    <title>Title of the document</title>\n" +
  6. "</head>\n" +
  7. "<body>\n" +
  8. "    <h1>This is a heading</h1>\n" +
  9. "    <p>This is a paragraph.</p>\n" +
  10. "</body>\n" +
  11. "</html>\n";
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement