I have a home-work to create a http server with java , a simple one and from scratch . After searching google and here ...i found this link "see the best response" with a very nice response ,so i copy/paste this example to eclipse , but it doesn't recognize the package
import com.sun.net.httpserver.Headers;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpServer;
can you please help me so i can make eclipse recognize them? Also if isn't asking for to much do you know some other link with a HttpServer example? Thank you in advance !
I had the same problem with Java 8.
com.sun.net.httpserver
is not API (there is an access restriction, and Eclipse indicate this as error).
You need to add an access rule "Accessible" for the pattern com/sun/net/httpserver/**
:
Related question: Access restriction: Is not accessible due to restriction on required library ..\jre\lib\rt.jar