Java Tools Section Index | Page 95
How can I debug my servlet?
Hoo boy, that's a tough one.
First off, you should always do your own exception handling. An
uncaught exception can silently kill your servlet, and if you don't
know where to look in the log f...more
Why can't I get my lexer to recognize 8-bit characters or binary bytes even though I set my character vocabulary to '\0'..'\377'?
It's probably the type of stream you are using. Check to make sure
you're creating a DataInputStream not a Reader:
DataLexer lexer = new DataLexer(new DataInputStream(System.in));
DataParser pa...more