Re: Class to Java

1999-12-24 Thread ebourke
srini <[EMAIL PROTECTED]> wrote on Thursday December 23, 1999 at 8:50am: >IMHO!!! If a class file can be converted to java file easily and can be >viewed by users and also using them in their program without the rights >of the original author what security does java provide for developers >for th

Re: Class to Java

1999-12-23 Thread Martin Kuba
You can get JAD from http://www.geocities.com/SiliconValley/Bridge/8617/jad.html Martin ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http:/

Re: Class to Java

1999-12-22 Thread Prashant
] - Original Message - From: Lakshmi Ramachandran <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 22, 1999 10:07 AM Subject: Re: Class to Java Hi I frequently do reverse engineering and by far the best tool that I have encountered is NMI's Java Code Viewe

Re: Class to Java

1999-12-22 Thread Lakshmi Ramachandran
Hi I frequently do reverse engineering and by far the best tool that I have encountered is NMI's Java Code Viewer. Get it at http://njcv.htmlplanet.com This uses "jad" but it is able to decompile most of the byte code without giving errors. The eval version allows you to decompile only one file at

Re: Class to Java

1999-12-22 Thread Prashant
Title: Class to Java Yes there is,,but i have forgotten,,,check in the download.com   Prashant Prashant Kollipara444 Saratoga Ave, Apt #19k,SantaClara, CA-95050Email: [EMAIL PROTECTED]Res: 408-226-9566Off:   415-255-2250 Ext:311 - Original Message - From: Srinivas_Kondamudi

Re: Class to Java

1999-12-22 Thread Andy Bailey
> srini wrote: > > > > IMHO!!! If a class file can be converted to java file easily and can > > be viewed by users and also using them in their program without the > > rights of the original author what security does java provide for > > developers for their efforts and time putin to create a code

Re: Class to Java

1999-12-22 Thread Steve Geach
Be aware that whilst javap may not reveal the source code decompilers such as JAD, mocha etc..,which are freely available, will! Useful for regenerating code that you may have lost the source for but it's mostly used for reverse engineering others code. So beware of this. Happy Xmas all Steve

Re: Class to Java

1999-12-22 Thread Konstantinos Chandrinos
srini wrote: > > IMHO!!! If a class file can be converted to java file easily and can > be viewed by users and also using them in their program without the > rights of the original author what security does java provide for > developers for their efforts and time putin to create a code??. I assum

Re: Class to Java

1999-12-22 Thread Paresh Gheewala
Ya Srini, I have comments ... There are security issues in java. javap will generate only methods stuffs. It will not generate the details of code... Thats the BEAUTY OF JAVA ! I think you should have understood the problem.           E-Card For Paresh M Gheewala   [EM

Re: Class to Java

1999-12-22 Thread srini
IMHO!!! If a class file can be converted to java file easily and can be viewed by users and also using them in their program without the rights of the original author what security does java provide for developers for their efforts and time putin to create a code??. Any comments Srini Paresh Ghee

Re: Class to Java

1999-12-22 Thread Juraj Kazda
Title: Class to Java Yes, several. For example, in Suns JDK there is a tool named "javap". Or try other, but commercial. Try to choose from http://www.javaworld.com/jw-07-1997/jw-07-decompilers.html Be sure there are more, but for beginning it's enough, isn't it?   BTW, why you don't first

Re: Class to Java

1999-12-22 Thread Paresh Gheewala
Yes the solution is there Mr Srinivas if your class file is paresh.class then you can generate equivalent paresh.java file with following command >javap paresh here don't write .class as extension. the file should be in class path Note : it will generate some junks in it for example : my paresh.j

Re: Class to Java

1999-12-22 Thread rajanikanth
Title: Class to Java hi  there is decafe pro available on the net rajanikanth   -Original Message-From: Srinivas_Kondamudi [mailto:[EMAIL PROTECTED]]Sent: Wednesday, December 22, 1999 2:54 PMTo: [EMAIL PROTECTED]Subject: Class to Java Is there any tool in this world which Generates Java