I'm doing some tests with Java EE and an Angular frontend.
I have almost everything ready to go, but I'm creating the backend, and needed the library json-simple, which simplifies the JSON parsing. I downloaded it, and imported the zip directly into my directory:
Ok, after this, I copy-pasted some code from an example webpage and tried importing the required sources:
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
Somehow, NetBeans can't find them. It just can't find the package "org", am I doing something wrong when importing these files? I tried importing only a folder with the sources, but it doesn't work either.