Skip to main content
Here's a simple HTML class in Java for creating a very simple HTML page.



package com.dreamsense.html;
/**
* HTML Elements
* 

HTML Elements is a class that contains some basic Elements * for creating a basic HTML document. * @author Kyle Eggleston * @version 1.0 * @since 1.0 **/ public class Html { /** * Heading 1 **/ public static String H1 = "h1"; /** * Heading 2 **/ public static String H2 = "h2"; /** * Heading 3 **/ public static String H3 = "h3"; /** * Heading 4 **/ public static String H4 = "h4"; /** * Heading 5 **/ public static String H5 = "h5"; /** * Heading 6 **/ public static String H6 = "h6"; /** * Paragraph **/ public static String P = "p"; /** * address **/ public static String ADDRESS = "address"; /** * HR **/ public static String HR = "hr"; /** * BR **/ public static String BR = "br"; /** * HTML Document Title **/ public String title; private StringBuilder sb = new StringBuilder(); /** * Construct HTML * @return this * @param element The HTML Element **/ public Html addElement(String element) { sb.append(String.format("<%s/>",element)) .append("\n"); return this; } /** * Construct HTML * @return this * @param element The HTML Element * @param text The text that goes in the Element **/ public Html addElement(String element, String text) { sb.append(String.format("<%s>%s", element, text, element)) .append("\n"); return this; } /** * Construct HTML * @return this * @param element The HTML Element * @param text The text that goes in the Element * @param id The id of the Element **/ public Html addElement(String element, String text, String id) { sb.append(String.format("<%s id=\"%s\">%s<%s>", element, id, text, element)) .append("\n"); return this; } /** * Sets the title of the HTML document * @param title The title of the HTML document * @return this **/ public Html setTitle(String title) { this.title = title; return this; } /** * Returns the title of the HTML document * @return The title of the HTML document **/ public String getTitle() { return this.title; } /** * Generate html * @return Returns generated html **/ public String build() { StringBuilder main = new StringBuilder(); main.append("\n\n") .append(title) .append("\n\n").append("\n") .append(sb.toString()) .append("\n"); return main.toString(); } }

Comments

Popular posts from this blog

Suicidal Ideation

 Over the years I've had to deal with suicidal ideation. Those are thoughts of being dead, some more extreme than others. It causes issues for me a lot of the time. It's not an easy thing to talk about at all. Here's what it is: Suicidal ideation ( suicidal thoughts )  are thoughts or ideas centered around death or suicide . Experiencing suicidal ideation doesn’t mean you’re going to kill yourself, but it can be a warning sign.

Didn't Sleep

 What's the point of sleep anymore if I can't sleep? I don't think I slept any good last night. I was awake at 3 am wondering to myself, what on earth am I doing awake? Yeah, that happened. It doesn't make any sense. Fortunately, it's the weekend. So, I can catch up on sleep tonight. I don't have to be anywhere tomorrow, so it's a good opportunity to actually sleep for once. Whatever the case, I hope I'll be able to fall asleep and stay asleep. We will see what happens.

Babylon 5 Destruction

 I always get emotional watching the last episode of Babylon 5. Especially the destruction of the station. There are so many good memories of the series that it's just emotional watching JMS flipping the switch and the station exploding as the last transport leaves. It's like oh the series is really over. The station has served its purpose not needed anymore. Was peace ever really achieved though? It makes me wonder. I've only watched the series once all the way through, I'm on a second rewatch. One of my favorite characters is Mr. Morden. I'm not sure why that's the case, he's creepy as all get out. I just know that he intrigues me for some reason or another. Kosh is also a mystery, but he's meant to be that way. He's an alien that no one seems to understand or grasp. The whole story arc is simply amazing. It was television ahead of its time. I'm glad it was made. Talk about a brilliant television series. It was one of the first serialized shows...