How many package in Java 1.1?

Do you know, How many package in Java 1.1?
[49 byte] By [ltmloana] at [2008-2-20]
# 1
.Message was edited by: Rohan.Desai
Rohan.Desaia at 2007-7-14 > top of java,Core,Monitoring & Management...
# 2

Idiotic question, so here's an idiotic reply:

jar tf /path/to/java/lib/rt.jar |\

egrep -v '^(META-INF|com/sun|sun)' |\

sed -e 's/\/[^/]*$//' |\

sort -u |\

sed -e 's;/;.;g' |\

wc -l

And if you change the last wc -l to more, you'll see the actual package names.

shankar.unnia at 2007-7-14 > top of java,Core,Monitoring & Management...