• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

creating .exe file which is showing jars on extracting

 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I am creating a MyApp.exe of my application but the problem is when i installed it on double clicking it, it is automatically creating jar which we have to double click to open a application,it is simple swing based application,but i want to know it can be easily be reverse engineering by anyone ,any one can convert this class file into .java file .Where is the security here in java?
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

monisha kasturi wrote:..but i want to know it can be easily be reverse engineering by anyone ,any one can convert this class file into .java file .Where is the security here in java?


Not much. One can use decompilers to 'reverse engineer' the source code. One way to hamper (not avoid) this happening is using code obfuscation
 
reply
    Bookmark Topic Watch Topic
  • New Topic