Thanks very much for your help Stephen.
It works great!!
Now on to new frontiers.. with less pain.
-Rao
-----Original Message-----
From: Stephan Nagy [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 8:29 AM
To: [EMAIL PROTECTED]
Subject: Re: Can someone please help using ECS
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]