Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way in Java to store external files (inside jar) safely? Java files are compiled to .class files and not readable.

I'm planning to use this meganism to store sql files, which hold queries, however i dont want those to be readable when one extracts the jar. External files are pre, cause we then have syntax highlighting while developping instead of putting them into a string.

share|improve this question
1  
If that sql files are going to be used by the code that the jar holds, you cannot make it safe. Since the only way is to encrypt them using some key, but the code which reads that sql files should know that key and therefor that key will be accessible using any java debugger. – khachik Apr 13 '11 at 12:22
FYI - There are decompilers available to read the class file code. see JD-GUI. Just because they are class files doesn't make then unreadable. – Sean Apr 13 '11 at 13:52

3 Answers

up vote 2 down vote accepted

A jar file is pretty much just a .zip file, so you can put whatever you want in them. There's no built-in encryption, so if you're trying to make the SQL files non-readable, you'll have to encrypt them (and then unencrypt in your code). I don't understand what you mean by "External files are pre, cause we then have syntax highlighting while developping instead of putting them into a string."

share|improve this answer
If you put them inside a class our problem is solved, however we cant easily read them any more since inside a string there is no syntax highlighting and you have to escape any quotes for ex. – Ferdy Apr 13 '11 at 12:21
@Ferdy: if putting them inside a class as strings solves your problem (ie you are not fighting against debuggers) you can encrypt sql files (AES, Blowfish) and decrypt when you application starts. – khachik Apr 13 '11 at 12:25

Yes, people do this all the time. Just add the files to the jar, and then access them with

getResourceAsStream. If you build with maven, you just plop them into src/main/resources to get them into the jar.

share|improve this answer

Of course you can put them in the Jar. Once there you can get at them by using the ClassLoader's getResourceAsStream method.

The challenge is to prevent other people extracting them. If your code can read them, so can someone else. What are your requirements here?

share|improve this answer
Getting files inside the jar isnt the problem... We want people who extract the jar not being able to read them. – Ferdy Apr 13 '11 at 12:20
Have you tried opening a .class file in Notepad? You can read all the String values straight out. You don't even need a debugger. – Simon G. Apr 14 '11 at 8:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.