Whats the difference between a JFrame and a jsp?

I recently came across "JFrame" from an online tutorial, the create .java. I thought jsp's were used for building web interfaces not .java. Can I use JFrames to design forms for a web site?Okay, I'm new to this so humor me.Thaks-
[252 byte] By [kiki824a] at [2007-10-2 22:06:15]
# 1
for online you wanna use an appletthat will allow it to run easily in an HTML window
PlasmaLinka at 2007-7-14 1:22:55 > top of Java-index,Java Essentials,New To Java...
# 2

JFrames are typically used with applications.

From the API:

An extended version of java.awt.Frame that adds support for the JFC/Swing component architecture. You can find task-oriented documentation about using JFrame in The Java Tutorial, in the section How to Make Frames.

A JSP page is a web page interperted by a http server and sent to a client browser.

JJ

Java_Jaya at 2007-7-14 1:22:56 > top of Java-index,Java Essentials,New To Java...