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

[ad_1] .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 … Read more

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

[ad_1] 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 … Read more

[Solved] Where does Java store the data?

[ad_1] 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, … Read more

[Solved] error creating jar file [closed]

[ad_1] You probably didn’t create the correct manifest file to add to your JAR. You need to specify what the main class is and what the classpath will be. 6 [ad_2] solved error creating jar file [closed]