On Mon, 25 Feb 2002, Leon Vermaak wrote: > If you would please be so kind as to re-direct me to a list for > biginners it would be appreciated. If you don't mind me saying out > of all people that have replied on this list you have one the prize > for rudeness. I would also gladly remove myself given that fact that > the person hosting this list server has a bit of a swelled head! > Thank you very much! > Martin Leon Vermaak
Michael's post my seem rude to you, but I disagree -- his posting is taking into account what's most useful and courteous in terms of the list overall. And it's not really our job to find a appropriate list/forum for your questions. There are tons out there -- somehow you found this one, you should be able to find other ones. But to give you some pointers, there are the comp.lang.java.* newsgroups and a bunch of mailing lists (like this one) that Sun runs -- check http://archives.java.sun.com/archives/ for a list. Then, as Michael suggested, there are tutorials up at Sun's site that have tons of information -- poke around, you can find them yourselves. Not to mention there are plenty of good Java books out there -- perhaps you should look for one with a more practical bent. If you just do a little bit of a search (I recommend google, www.google.com and groups.google.com), there are tons of resources -- faqs, tutorials, etc. -- out there you can make use of. You seem to lack some basic understanding of how this stuff works -- it would behoove you (and show respect/considerateness for others) if you read through an entire tutorial/book to fill in the gaps in your knowledge. > ----- Original Message ----- > From: "Michael Weller" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, February 25, 2002 3:59 PM > Subject: Re: classpath/servlet compilation error: javax package not found! > > > > hi! > > come on! that's basics! every question you asked is so basic that the java > > tutorial (don't ask for the link now!!! how did you manage to find this > > list?) will answer it, plus every question you'll have the next few weeks. > > so read it! > > sorry that i'm rude but this is servlet-interest, not java-beginner and > i'm > > sick of having my mailbox spammed with ... > > > > -mw > > > > At 13:02 25.02.2002 -0500, you wrote: > > >thanks, > > >So for each package I use I must set classpath each time? > > >Is there a way to somehow tell the compiler to make use of all files in > some > > >folder example *.jar or *.*? > > >Thank you very much! > > > > > >----- Original Message ----- > > >From: "Markus Spath" <[EMAIL PROTECTED]> > > >To: <[EMAIL PROTECTED]> > > >Sent: Monday, February 25, 2002 12:53 PM > > >Subject: Re: classpath/servlet compilation error: javax package not > found! > > > > > > > > > > Leon Vermaak wrote: > > > > > > > > > > > > > How does the compiler find the javax.servlet.* classes > > > > > in the servlet.jar file... WHERE do you tell the compiler to find > the > > >class > > > > > files or jar for that matter. > > > > > > > > > > > > this is the job of the classpath; > > > > > > > > if you call: > > > > javac -classpath C:\yourjars\servlet.jar > > > > for instance, all files contained in servlet.jar will be visible to > the > > >compiler; > > > > > > > > if your classes reside in a dir called C:\yourclasses > > > > javac -classpath C:\yourclasses > > > > will make them visible to the compiler. > > > > > > > > you can add as many entries as you like, seperating them by ; > > > > > > > > hth, > > > > markus > > > > > > > > Milt Epstein Research Programmer Software/Systems Development Group Computing and Communications Services Office (CCSO) University of Illinois at Urbana-Champaign (UIUC) [EMAIL PROTECTED] ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
