Im missing main class in NetBeans - java

I accidentally deleted main class in NetBeans from Templates, know I cannot create any projects.
Does anyone know how to retrieve it?
I tried to reinstall NetBeans but it didn't work for me.
So please if anyone knows how to fix this I would appreciate it very much.

Take a look here. Same problem resolved.
UPDATE
Ok.
Close NetBeans IDE, go to NetBeans userdir
, then to config/templates directory and delete Classes_hidden file.
When NetBeans IDE is started again templates for Java are back.
From here duplicate post
p.s Net beans user dir is something like this
C:\Users\YOUR_USER\AppData\Roaming\NetBeans\8.2\config\Templates
I tried this and it worked.

Netbeans automatically updates your work when you clean and run. Just:
open your project
Go to project History / History
Select a period that the project worked correctly before deleting the main class
Right click and revert from History

Related

Can't run & create a class on Eclipse because my clone is not a project

I have a problem on a git project that I cloned on eclipse, I can't run it and create a class in this project, when I try to create a class, eclipse tells me that it's not a project , How can I fix this? I tried window preferences, java editor, but it still doesn't work, I uninstalled eclipse it still doesn't work, the problem probably comes from the project but I don't know how to fix it. Thanks for the help.

My spring-boot program doesn't have the JavaBuilder in the Properties

I loaded a project on Spring-tool Suite but I realized that it does not correct the errors. Going to see Properties I realized that all the parameters related to the JavaBuilder that I have in the other loaded projects were missing. I think it's a Jdk problem, but I don't know how to set everything up or how to reset the project in order to have the error corrected.
thanks to anyone who can help me!
I think you need to delete the .metadata folder in your workspace.
The problem was Spring-Tool itself which had a bug where it didn't show any kind of error. There are two ways to get around the problem: delete the project from Spring-boot, delete the Workspace and reload everything. In case it is also recommended to download Spring-boot tool Suite again. In the second case it could be an error importing the project, try to import it to Intellij or another IDEE and see if you have the same problems. If you have the same problems it is a problem of loading the java libraries. To solve it you should open another project where you have no problems and once opened, go to FILE-> NEW-> IMPORT PROJECT and import your project.

Netbeans does not update my Netbeans-Platform application when I modify modules files

I'm currently having troube developing a Netbeans Application on a 7.3RC2 base : I have a few modules of my own, and when I run the application (from the module in netbeans), nothing appears to change since yesterday. Looks like my "executable" files are frozen, no matter what I'm doing.
I tried cleaning the modules, recreating them and import the source code, desperatly recreate the full project and paste the sources into it... no way.
Then, I wondered if there was a kind of "execution folder" which would contain some data kidding me.
I did some search on Google and SO, but found nothing answering this problem.
Any idea is welcome !
[EDIT 1]
It seems my Netbeans app is using an old module JAR, and does not update it despite of module clean&build.
Solved !
Something unexpectedly went wrong with the "Public APIs" configuration in all my modules and they where in "autoload" state, I don't know why.
I had the idea to manually uncheck and re-check all necessary checkboxes, and all is going right now.

UI changes done in Netbeans do not reflect in Eclipse

I am mainly using Eclipse for my project. For Swing GUI part, I find using Netbeans is more user-friendly. Hence, only for building UI, I am using Netbeans for the same project.
I developed a form using Netbeans. So, corresponding .java file got generated in Eclipse also. After working on it for few days, I went to Netbeans and changed name of a JPanel. But, the same change is not reflected in corresponding .java file in Eclipse.
Before this, I have done such changes in Netbeans and even have seen the changes getting reflected in Eclipse version of the project. But, I don't know what went wrong this time. I even tried refreshing, cleaning etc.
Can anybody please help me with this?
Thanks!
Finally, I had to delete everything from the workspace and checkout everything again. After that, it is working fine.

Eclipse says my Android project(s) contain(s) errors, but there aren't any

Since last night, Eclipse hasn't been letting me run any of my projects and gives me the error "Your project contains error(s), please fix it before running it".
This happens regardless of which project I use.
There are no code errors in any projects
There are no missing files (R.java, etc.) or folders (src, res, etc.)
There are no errors in the console (even on verbose) or the error log screen
I've cleaned all the projects, and each individual project many times
I've restarted ADB, Eclipse, and my computer
I have no idea what to do next, so hopefully its fixable.
NOTE: I am using Git, and this occurred after switching to my master branch to export a new update to one of my apps.
Thank you in advance! (:
Edit 1: I have also tried deleting and re-importing the projects before I posted this.
Click Window -> Show View -> Problems, that should show what exactly Eclipse thinks is wrong with your project. Sometimes you can simply delete the problem from that view, and Eclipse believes you everything is fine (yep, weird, I know).
Also, after you switch branches using an external source control tool (one not integrated into Eclipse through a plugin), Eclipse sometimes won't pick up all changes, you'd need to manually refresh the whole project file tree.
If nothing else helps, try setting up a new Eclipse workspace and importing your project there.
check your build paths - there could be jars and dependencies that are outside of the app that need to be opened or imported.
another trick is to edit an xml file, just change one word to intentionally cause an error, save the file, then change it back to proper syntax and save again. Error magically disappears.
another trick is to edit a java file, (cause error, save, fix error, magically error free)
I had this problem and I have fixed it. My issue was this:
I somehow managed to require another project in my build. That project had errors in it, which I believe is what caused the issue. I think this happened when I accidentally asked Eclipse to fix my build path or something when I was trying to fix a mistake. To correct this issue go to (on mac):
Right click on your project folder in the Package Explorer
In the menu, go to "Build Path"
Select "Configure Build Path"
Go to the "Projects" tab (along the top).
Is there anything in there? If there is and you weren't expecting there to be, select the project that is in that folder and hit "Remove"
This fixed the issue for me. Hope it helps.
I think you need to clean your project. Do project -> clean. Should work fine after that.
Try using Project->Android Tools->Fix Project Properties besides checking for your Android path. Check if your ANDROID_HOME and ANDROID_SDK are set correctly besides adding tools and platform-tools are set correctly in environment variable PATH.
Hope this helps!
Go to your .android folder and delete your debug certificate.
E:\Users\(your profile)\.android
Inside that folder there is a file name 'debug.keystore'. Delete that, clean and try to build the project again. Sometimes this error is caused when the certificate expires.
I found this answer here and it solved my problem ;-)
I think go to project ->clean some error can be solve this problem
Go to Projects in the menu bar
Then check the menu Build Automatically.
This helped for me.

Categories

Resources