I have a question about tag library descriptor. I specified in my JSP a URI for the taglibrary descriptor as "/hello". And I placed the tld file in Web-inf directory. The question is when I tried to open the JSP. Tomcat says can not open library descriptor "C:\tomcat\webapp\thisWebApp\hello" I don't know why tomcat doesn't recognize the taglib's uri and trace to the proper tld file but instead taking the uri somehow as a file and could not open it! Thanks for your help.
Hi, I have a feeling that many of the questions posted here are quite twisted that it's almost like searching for bugs in JVM. Is there anyone out there can tell us whether the exam is as into the trivials as many of the questions posted? Thanks.
I don't understand why is "in start" printed before "in run"? Shouldn't super.start() print "in run" when it invoke run(), then "in start" was printed? Thanks.
What happens when you invoke a constructor for FileOutputStream as new FileOutputStream(SomeFile); But there is no SomeFile the file nor SomeFile the directory? Thanks.
You can write your own method, counting the positon of each digit, then appending "hundred", "thousand", etc. Of course, below hundred you need a switch to append the "ten", "twenty", etc.
I uncommented that line and javac compiled with no problem. I was using jdk1.3 on Windows98. Explicit casting between two classes that are in any kind of heirachical relationship is allowed. Implicit conversion only works up the inhertance heirachy.