thank you, i wanted to make a simple change and all the reddit resources kept saying don't do it because you will mess up, but its just changing a mods units and adding a few files.
i followed the steps and kept going fine up til i needed to compile the java file i wanted to edit: a hundred errors being shown out of 300+ saying "item does not exist" for almost all the lines pls help :
@@jcz8225 te voy a ser completamente honesto, no esta bien decir "has encontrado la solucion?" porque cuando queremos recibir una notificacion o ver un mensaje de respuesta es para esperar la respuesta o solución del problema se vuelve molesto recibir este tipo de mensajes
so I used javac, but it gave me an error saying "'javac' is not recognized as an internal or external command, operable program or batch file." Am I missing something?
Issue when I try to recompile is it gives a bunch of errors about cannot finds symbol. Looking through replies, I don't understand what you mean by "make sure all dependencies are there."
Hello , this is such a great Video , thank YOU Very much for sharing , really appreciate it brother i had a quick question for you , my code is in in the jar ,but weird is its under a folder WEB-INF and Javac is giVing errors and not compiling it says package does not exist for WEB-INF ...what do we do now ? how can we compile ? please please help brother thank you Ajay
@@iteducator Oh I Actually Managed to do it a while ago But One Thing. so How do I Change it when Like the File Opens (Im Customizing a Minecraft Client) The Name of it is at the corner of the window how do I Change that?
The javac command brings me errors because some of the variables and functions in the .class file are being called by other parts of the .jar file, so anytime I try to use the javac command on the one specific .class file I made changes to, it'll come up with errors saying that certain functions and variables and symbols aren't defined/recognized (because they come from other parts of the .jar), this is the only part I'm having trouble in, is there any way to convert this .java file into a .class? I've been stuck on trying to do this last part for a while
@@AverageSchizo it's basic programming, and as the name suggests dependency, which means the package of code that your program is dependent on. In Java these are the imported packages in start of the code file.
Hi.. I followed these steps but when I do javac filename.java in cmd, it gives me 5 errors. The errors are: cannot find Symbol (for class names). How to resolve this???
It occurs when you have the wrong keyword or identifier and the compiler cannot find it. Check out the exact line indicated, for a more detailed answer check out this thread. stackoverflow.com/questions/25706216/what-does-a-cannot-find-symbol-or-cannot-resolve-symbol-error-mean
please any one can help me with this error : javac acceuil.java acceuil.java:3873: error: variable declaration not allowed here boolean bool = (new File("Dossier_photos")).mkdirs(); ^ 1 error all the fille are in the same folder, thank you
what if my java file has 5 classes, 3 of which are needed to be edited[these are not taking much space in notepad], will the decompilation et compilation break anything? and is the java file and executable jar file the same thing?
the time depends on the size of the file, if it is a large file try to extract and do it in parts, also make sure you have java installed properly. Check this video to see: ua-cam.com/video/i21CvFuDxek/v-deo.html Are you getting any errors as well?
@@iteducator Hello again, I use Java 11 for my project. It has been installed properly for sure. I have extracted in parts as you suggested and it is working for some classes. The size of my jar is 6.88MB. Let me know if you have any other solution in order to extract the whole jar! Many thanks again :)
great explanation. But . . my issue is that when I want to compile the changed Java file, i get an error on the package name, which starts with package WEB-INF.string1.string2.string3 It is the '-' between WEB and INF that is not allowed. However; I didn't invent the WEB-INF: It was already in the source file (which is a working application. Anybody any ideas?
I had some difficulties too whwn I watched it the first time , but you have to really watch carefully. All steps are shown. I made some notes with pen and paper to 'educate myself :-) . It helps . .'
This tutorial is stupid, guy is clicking random stuff, swinging mouse right and left and doing things calling "these" in the same time moving mouse randomly...
thank you, i wanted to make a simple change and all the reddit resources kept saying don't do it because you will mess up, but its just changing a mods units and adding a few files.
Followed your tutorial step-by-step, ended up getting 178 errors... no clue what I did wrong
Thank you. I look forward to editing my game files.
My minecraft world looks loke the biblically accurate angels now
@@GetCrouchedOnNerd Enchantcally accurate worlds
same!!
may be a dumb question, but at 5:12 i litterally dont have the option to extract it, any idea what to do?
i followed the steps and kept going fine up til i needed to compile the java file i wanted to edit: a hundred errors being shown out of 300+ saying "item does not exist" for almost all the lines
pls help :
Hola, me pasa lo mismo, has encontrado alguna solucion?
@@jcz8225 te voy a ser completamente honesto, no esta bien decir "has encontrado la solucion?" porque cuando queremos recibir una notificacion o ver un mensaje de respuesta es para esperar la respuesta o solución del problema se vuelve molesto recibir este tipo de mensajes
simple video which added great value, thanks very much sir
Thank you, You're welcome
@@iteducator tengo errores en el momento de usar javac y
@jiocrestfall tambien
so I used javac, but it gave me an error saying "'javac' is not recognized as an internal or external command, operable program or batch file." Am I missing something?
Issue when I try to recompile is it gives a bunch of errors about cannot finds symbol. Looking through replies, I don't understand what you mean by "make sure all dependencies are there."
Than you bro
Question can you make a video explaining the obfuscated and de-obfuscated java files
Please thank you
Thanks, sure I'll try.
When I tried using the javac part, I get a bunch of errors and cant generate .class
same
You probably need to add the classpath javac -cp
@@RoyLye still got same error
@@RoyLye got the same error. you meant the jar file for unpacked file?
you need to keep all the dependencies as well used in the java file
Hello , this is such a great Video , thank YOU Very much for sharing , really appreciate it brother
i had a quick question for you , my code is in in the jar ,but weird is its under a folder WEB-INF and Javac is giVing errors and not compiling
it says package does not exist for WEB-INF ...what do we do now ? how can we compile ? please please help brother
thank you
Ajay
Thanks man, imma decompile a java phone game and modify shit, thansk again!
great
Hi i get error when compiling. without changing anything from the .java file
please make sure all the imports are also present in the extracted folder
@@iteducator do you mean that if the decompiled class file imports from other packages, i have to copy the packages into the same folder?
I tried the javac command on a bunch of files in my Minecraft JAR file and it came back with a handful of errors
did you fix it?
@@ardaonuk2790 I did not
You shoud keep all the dependencies as well used in the java file
check if the jar file is a zip, if not, idk how to help with that
getting bunch of erros when trying the javac command
you have to place all the class files required for compilation
@@iteducator you mean if i changes multiple files i need to copy and paste them all and then do the javac command?
yes all the imported classes and its dependent classes should be present as the compiler will use them.
How do I add other package references to compile. I have dependency on other jar/packages.
keep them in the same folder as java files, and the entire folder structure should be the same as the JAR
Nice i can decompile files but i dont know how to recompile them nice tutorial!
You can follow the tutorial, if there is any problem.
@@iteducator which tutorial, it doesnt work too
I liked your video very much it answered my question
Thank you
Ran this and it runs a bunch of errors when compiling is there a method to avoid this?
You must have all the dependency packages as well for it to compile
How do I Like Change a PNG There is one how do i replace it???
try winrar to add or delete, keep the same file name.
@@iteducator Oh I Actually Managed to do it a while ago But One Thing. so How do I Change it when Like the File Opens (Im Customizing a Minecraft Client) The Name of it is at the corner of the window how do I Change that?
When I am going to open a jar file through jd gui, it just doesn't open!!!
What should I do now???
Extract the jar and then open any class file as a workaround, it does not happen usually unless something is wrong with the jar file.
error: ')' or ',' expected
}1L, 10L);
^
how do I fix this ( this happened after I typed in the javac command )
check the java code in some editor, there seems to be a missing closing bracket
cant return into .Class file i get error in cmd
please make sure all the imports are also present in the extracted folder
'javac' is not recognized as an internal or external command,
operable program or batch file.
How to resolve this??
You must have Java JDK installed.
ua-cam.com/video/i21CvFuDxek/v-deo.html
currently i don't switch from java to class using CMD . How to fix?
how can you switch in cmd? I don't understand your point
The javac command brings me errors because some of the variables and functions in the .class file are being called by other parts of the .jar file, so anytime I try to use the javac command on the one specific .class file I made changes to, it'll come up with errors saying that certain functions and variables and symbols aren't defined/recognized (because they come from other parts of the .jar), this is the only part I'm having trouble in, is there any way to convert this .java file into a .class? I've been stuck on trying to do this last part for a while
you need to place all the dependencies packages and classes in the same paths as the java file in order to compile
@@iteducator what does that even meannnn
what is a dependency package, you didn't cover that at all in the video?
@@AverageSchizo it's basic programming, and as the name suggests dependency, which means the package of code that your program is dependent on. In Java these are the imported packages in start of the code file.
Bro did u get any solution? I got the same problem too
@@Roz_ggez put the .java file in root of unpacked archive and call the javac command here
Bro if re complied I getting error in the progam showing some is not available
yes all the imported dependencies must be placed in the same paths as well to compile the code
@@iteducator your great . It works fine, thanks a lot. Please keep helping people. No words to say.
Im lost in the cmd, there is no in my this file name
what is not there in the cmd?
Hi.. I followed these steps but when I do javac filename.java in cmd, it gives me 5 errors. The errors are: cannot find Symbol (for class names). How to resolve this???
It occurs when you have the wrong keyword or identifier and the compiler cannot find it. Check out the exact line indicated, for a more detailed answer check out this thread.
stackoverflow.com/questions/25706216/what-does-a-cannot-find-symbol-or-cannot-resolve-symbol-error-mean
I had to use the -classpath modifier to include the folders that had the Classes in them.
Hi all.. I made it work later on.. will share soon if I remember what I did.. thanks to this tutorial for help!😊
@@Firesealb99 works for me, but additionally I download additional missing dependencies
@@MS-cn4dh hey, could you share what you did please?
Sir me java file me convart kar le raha hua lekin mai class file me nahi ho paa raha hai
it says java isnt recognized as an internal or external command, operable program or batch file
It's javac. And have you installed java in your system?
@@iteducator yes it works now but i get 112 errors when i try to compile it
You will have to resolve the programming errors. And make sure all the packages being used are present in the same paths as in the jar
@@iteducator bro i installed java but i cant use javac command its jdk8 1.80 vers
@@lawjz6927 check if java is installed properly, type java -version in the command line
please any one can help me with this error : javac acceuil.java
acceuil.java:3873: error: variable declaration not allowed here
boolean bool = (new File("Dossier_photos")).mkdirs();
^
1 error
all the fille are in the same folder, thank you
check if it's already declared
Thanks a lot, It helped me a lot
Glad to hear that
what if the file you want to edit is a .json?
JSON can be edited as it is.
Hey, I'm getting a package not found error while trying to compile using 'javac'. What should I do?
You must include it for it to compile
@@iteducator I have all those packages included.
stackoverflow.com/questions/3041543/package-not-found-javac
Try this
@@iteducator okay thanks, I'll try that
what if my java file has 5 classes, 3 of which are needed to be edited[these are not taking much space in notepad], will the decompilation et compilation break anything?
and is the java file and executable jar file the same thing?
It won't cause an exception if there are no errors. JAR file and java file are different things.
Hello! At the step "Save all sources" the save process is taking too long and it is not finally successfully saved as zip. Could you help me please?
the time depends on the size of the file, if it is a large file try to extract and do it in parts, also make sure you have java installed properly. Check this video to see:
ua-cam.com/video/i21CvFuDxek/v-deo.html
Are you getting any errors as well?
@@iteducator Hello again, I use Java 11 for my project. It has been installed properly for sure. I have extracted in parts as you suggested and it is working for some classes. The size of my jar is 6.88MB. Let me know if you have any other solution in order to extract the whole jar! Many thanks again :)
@@georgekoletsis3276 use jd 1.4.2 or older versions bro
I used versiom 1.4.2 and it soved mine
When save all source . It run 50%. Why bro?
Is your file too large? if yes, then try it in parts by extracting
its taking much time to convert source code for my respective jar file. more than 1 hr still not converted
if the jar file is too large, it can be an issue, try doing it in parts
Tqs for suggestions will try with that.
great explanation. But . . my issue is that when I want to compile the changed Java file, i get an error on the package name, which starts with
package WEB-INF.string1.string2.string3
It is the '-' between WEB and INF that is not allowed. However; I didn't invent the WEB-INF: It was already in the source file (which is a working application. Anybody any ideas?
Can you share the error you're getting, and have you placed the WEB-INF in the exact path
@@iteducator i also get the same error
Thanks
saved my day! much appreciated!
Glad it helped!
its work thankyou very much
You're welcome! Glad you found it helpful
Will this work for EAR also ?
yes, it will.
OMG thank you sir very muchhhh
Thanks
THAAAAANKS!
success
Bro i don't understand anything clearly please make another video how to convert jar files into Java and then edit with the example of any game or app
Please watch it again, all the steps are there.
I had some difficulties too whwn I watched it the first time , but you have to really watch carefully. All steps are shown. I made some notes with pen and paper to 'educate myself :-) . It helps . .'
This tutorial is stupid, guy is clicking random stuff, swinging mouse right and left and doing things calling "these" in the same time moving mouse randomly...
how to install java compiler?
you have to install Java Development Kit (JDK) for windows
@@iteducator ik, its old java i already fixed
thank you very much :)
My like is number @300@❤️❤️
top
❣👍👍👍👍👍👍👍👍👍
thank u very much :)
You're welcome!