[Solved] Get jar file from Android phone [closed]

.jar files usually contain no source code, but they contain class files with byte code (.class files, not .java files). Ever looked into a class file? That’s not readable code, it is a couple of VM instructions and it is not possible to get your source code back from those files. You can decompile them … Read more

[Solved] .jar does not run and cannot find external jar

I don’t think I deserved the downvotes but hey. Well anyway the problem was that I was referencing .jars within .jars, I didn’t think that this would be a problem but it was. The solution was to put the .jars (libraries) alongside my compiled application .jar and update the manifest accordingly. it is also possible … Read more

[Solved] Where does Java store the data?

Constructor create object in memory only, and once your app is closed or pc shutdown your data will be lost, store data in a file is useful to store application settings, you have to use an xml or a properties file. If you want to store your business or other data in a database, you … Read more