I wanna edit java .jar app's files, such as java jar book (txt).plz help if you can !!!
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
I wanna edit java .jar app's files, such as java jar book (txt).plz help if you can !!!
A .jar file contains program resources. See the API doc for the jar command for how to create a .jar file.
https://docs.oracle.com/javase/8/doc...jar/index.html
If you don't understand my answer, don't ignore it, ask a question.
Mr.adnan (April 30th, 2021)
in java Gameloft .jar game,there are these files: picture.sound.class. Ane etc. gameloft remove the extension.now How can I restore those files with my Java mobile? On the other hand In a .jar book , the vendor in java Gameloft .jar game,there are these files: picture.sound.class. Ane etc. gameloft remove the extension.now How can I restore those files with my Java mobile? On the other hand In a .jar book , the vendor Has resorted to the same method.
A .jar file has the same structure as a .zip file. Any utility that can open and extract files from a zip file can do the same with a jar file.
If you want to change the contents of a jar file, extract its contents to a folder using a zip utility, update the files in the folder and then use the zip utility to create the jar file with the same structure as it had before this process began.
I've never worked with secured jar files and there may be restrictions on what can be done to the jar file.
This thread moved from What's wrong section - There is no OP code with problem here.
If you don't understand my answer, don't ignore it, ask a question.