The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
July 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

Questions about 'JEXEGEN'

Posted by Salil V Gangal on July 13, 2001 at 11:03 AM

Friends,

I have created a .EXE file from my .class file using MicroSoft's jexegen utility.

I have questions about this ===>

  1. Is it possible to decompile the .EXE to get back the Java program ? (And if it is what is the tool to do that ?)
  2. Are there any files in addition to .EXE (such as library routines) in general to run the file generated by jexegen or is it a complete file in itself ?
  3. What are the free alternatives available to jexegen ?

I mentioned earlier in a post below that I had problem with addAll and removeAll methods of Vector with MicroSoft's SDK. I simply wrote little code-fragments to simulate the desired results.

//  Rather than using ===>  inputLines.removeAll(inputLines); <<===
// I used the following
for ( int i = 0; i < inputLines.size(); i++ ) {
inputLines.removeElementAt(0);
}

Is there any other approach ?

Regards,
Salil V Gangal



Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us