NADELLA, RAO S (SBCSI) wrote:
>
>Would someone be able to help us newbies by putting a brief list of
>instructions:
>explaining the process from download to implenting in the java code files.
>
>For some of you experienced gurus, this may sound silly, but it would be
>extremely
>helpful for people who are just starting out.
>
I'll take a stab at a code example for you.
import org.apache.ecs.html.*;
public class Example
{
public Example() {}
public static void main(String[] args)
{
Html html = new Html();
Head head = new Head();
Title title = new Title();
Body body = new Body();
title.addElement("Example.");
head.addElement(title);
body.addElement("Hello World!");
html.addElement(head);
html.addElement(body);
html.output(System.out);
}
}
-stephan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]