I suppose the nastiness of developing under Windows with its crappy MS-DOS
console... Just fix the last errors first. That's what I do if I have no
other choice. And there is some perverse satisfaction in not even knowing
what is going on before and what you may still need to fix ;-) This weekend
I compiled a class: 3 errors, fixed some: 17 errors (obviously the first
error was on higher level) so obviously I could not see more than a couple.
Fix those, and you see it slowly go back. I don't know about you but most of
my compile errors usually turn out to be missing parentheses or semi-colons
and upper/lower case mixups, so working from the back is not so bad. In case
you get errors that indicate an object has not been initialised or
something, then go to the beginning of your code and make sure the object is
properly initialised. You can always comment out a large part of your code
with the /* ... */ comment tags which may give you the opportunity to just
compile, say, your constructor and first few methods. These are just simple
tricks, really, and they work.

Cheers
Jay

-----Original Message-----
From: B R Nair [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 25, 2000 6:28 AM
To: [EMAIL PROTECTED]
Subject: Compilation


Hello All,

I am unable to debug my java beans because while compiling the program, if
more errors are there, the error messages roll up and I am able to see only
the last messages. I am using JDK 1.3 candidate version under Windows 95. In
erlier versions I could say
javac filename > repo.log
so that I could check repo.log for errors. This does not work with JDK 1.3.

Can anyone help me please?
BRN.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to