Want help in developing my first game in java!!

I want to develop a tetris game in java..can any one help me on this..basically i m new to java programming, i want to know abt the graphical part ..how to make that.. i will code the rest..I want to make an application rather than an applet..
[250 byte] By [Ankit_Hirdesha] at [2007-10-1 20:22:48]
# 1

look at the Java2D demo that comes with the JDK

it has lots of source code and just about everything you'll need to do in Tetris (technology wise) is in there, except the game logic.

when you're ready to move into 3D and heavier apps, try this book:

Practical Java Game Programming

http://www.amazon.com/exec/obidos/tg/detail/-/1584503262/102-3570681-1096110?v=glance

SoulTech2012a at 2007-7-13 2:23:22 > top of Java-index,Other Topics,Java Game Development...
# 2
I have made blocks which r there in tetris. I m having a problem in collision detection..i.e. knowing if an image(a block in tetris) exists in a particular rectangular region..how to detect this?
Ankit_Hirdesha at 2007-7-13 2:23:22 > top of Java-index,Other Topics,Java Game Development...
# 3
not to be rude, but this is very basic game programming stuff, you should probably grab a book (or article) that discusses collision detection in 2D, google that and check back with us
SoulTech2012a at 2007-7-13 2:23:22 > top of Java-index,Other Topics,Java Game Development...
# 4
Hello,You can use contains(....) method of java.awt.Rectangle class ( http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Rectangle.html). You will prbably need to represent your blocks as rectangles or corner points and test with the contains(....) methods.
casperla at 2007-7-13 2:23:22 > top of Java-index,Other Topics,Java Game Development...
# 5
iam learning java. iam a starter. i want to develop a small and simple game in java. please help me out
gousia at 2007-7-13 2:23:22 > top of Java-index,Other Topics,Java Game Development...