I searched, and only found a couple([1][2]) of answers here. None of them really answer my question though.

My application will have a thirty day trial period. What's the best way to protect the program? I'm not worried about crackers, just Joe Average reinstalling the program. Setting back the clock isn't really a concern either.

link|improve this question

1  
Can you go into more detail about why the linked solutions don't do what you want? – unholysampler Feb 27 '11 at 19:10
Keep in mind that it will be super easy to deompile the .class files and remove the offending code, even if you obfuscate it. – Chris Feb 27 '11 at 19:12
possible duplicate of How to prevent a Demo Java Program from my client's regular use? – Don Roby Feb 27 '11 at 19:15
1  
@Chris: While that is true, he said he was not concerned with hackers, just everyday people. – unholysampler Feb 27 '11 at 19:27
@unholysampler: the first one requires hardcoding the expiration date into the source. The second has the same problem, and others that require connection to the internet to start up. I just want to require connection for entering the keys. – Jonah Feb 27 '11 at 20:20
feedback

1 Answer

Here's exactly the question you're looking for:

Implementing a 30 day time trial

link|improve this answer
I hadn't found that one (was searching under the Java tag). That answers my question a bit more. Can you recommend an encryption method? – Jonah Feb 27 '11 at 20:18
where should the file be kept? – Jonah Mar 1 '11 at 19:27
feedback

Your Answer

 
or
required, but never shown

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