CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2000
    Posts
    9

    De-compiling class files

    Hi,

    I was wondering if somebody could help me with the following problem: I
    would like to port some of my C++ programs to Java but I'm worried about the
    fact that the Java programs can be easily "de-compiled"; revealing the methods
    that I've worked long and hard to develop. Is there any easy way to stop
    people from doing this?

    As you can probably gather, I'm new to Java and need such questions answered
    before pursuing the language further.

    Thanks in advance

    John



    John Paul Jones

  2. #2
    Join Date
    Jan 2000
    Location
    Canada
    Posts
    249

    Re: De-compiling class files

    It's very hard to stop someone from decompiling your class files. That said, there are steps you can take to make sure that if someone does try to decompile your classes, it will be very hard for them to do it, or to understand what is in it. This process is called obfuscation. There are many programs out there that will do this for you, I can't think of any right now, but the basic idea is to make your files practically unreadable.

    -------------------------------------------
    weaver
    icq# 64665116
    Please rate this post.
    http://weaver.x7.htmlplanet.com

  3. #3
    Join Date
    Sep 2000
    Location
    Texas
    Posts
    22

    Re: De-compiling class files

    www.4thpass.com look at SourceGuard™ 4.0

    "There are no facts, only interpretations."
    -Friedrich Nietzsche

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured