Posts

Showing posts with the label netbeans

I am not able to create groovy project

Image
I am not able to create groovy project I have used different approaches- My system has jdk 1.8.1. I tried installing Eclipse (oxygen and photon), Java programs are running fine but when I am installing groovy plugin from Help -> Install new software, it's not running. Then I tried installing different IDE that is NetBeans, here also I am not able to create project. Error: Warning | Unrecognized flag: non-interactive. Error | Specify an application name or use --inplace to create an application in the current directory You need to provide more information on what you did in Eclipse, and what the exact problem is with setting up Groovy. Just saying "it's not running" is insufficient. – skomisa Jul 1 at 18:28 Also, since you are asking two distinct questions in the post above it would be appropr...

Java program is compiling in netbeans but not in CMD, package does not exist

Java program is compiling in netbeans but not in CMD, package does not exist I'm working on a shop management System program. Building this using NetBeans, Java and SQL Server. I used a Jdatepicker in my Program. It is working well in NetBeans, but now I was trying to compile it through CMD. i'm using correct syntax, but yet it is giving me errors package org.jdesktop.swingx does not exist import org.jdesktop.swingx.JXDatePicker; with many similar errors about datepicker . I have already imported 4 libearies Jdatepicker package org.jdesktop.swingx does not exist import org.jdesktop.swingx.JXDatePicker; datepicker import javax.swing.JFormattedTextField.AbstractFormatter; import org.jdesktop.swingx.JXDatePicker; import org.jdesktop.swingx.plaf.basic.CalendarHeaderHandler; import org.jdesktop.swingx.plaf.basic.SpinningCalendarHeaderHandler; for this purpose, It is working well in NetBeans but not in cmd. I have used javac in cmd using -classpath file address.jar , but same erro...