i have downloaded source code in java language for project work.
when i compile a class in it .i get the message that the class uses or overrides deprecated API.
reCompile with -deprecation.
what does this mean? and how do i run the source code or what changes should i make?
JFALCON thanks for answering .could u please tell me how do i Recompile with this word "-deprecation".i tried on command line.please can tell me the right syntax.i am compiling
"c:\folder name\javac class name.java".i am using jdk1.4
please can u tell me the answer ,u can contact me by seing my yahoo answers profile.
waiting for ur reply
regards
sheetal
Deprecated code is code that has been removed or perhaps replaced with different functionality. Typically the way to correct this is to re-work the code so that you use newer APIs if the case is the latter.
Apparently the code that you have downloaded must be older code which was written against older APIs (Application Program Interface) or the person that wrote it was using an older compiler.
It seems that your compiler can handle the older code, provided you add the command line switch "-deprecation" which will allow it to compile that code without any warnings or errors about older code.
6:52 am on December 4th, 2009
Deprecated code is code that has been removed or perhaps replaced with different functionality. Typically the way to correct this is to re-work the code so that you use newer APIs if the case is the latter.
Apparently the code that you have downloaded must be older code which was written against older APIs (Application Program Interface) or the person that wrote it was using an older compiler.
It seems that your compiler can handle the older code, provided you add the command line switch "-deprecation" which will allow it to compile that code without any warnings or errors about older code.
References :