我使用的是Eclipse Indigo和Java jdk7。
我想创建一个小型的sun服务器,但是我不能使用sun的sun服务器。
当我键入时:
{
com.sun.net.httpserver.httpserver server;
}我得到以下Eclipse错误消息:
Description Resource Path Location Type
Access restriction: The type HttpServer is not accessible due to restriction
on required library C:\jdk1.7.0\jre\lib\rt.jar
Server.java /REST-Server/src/com/test/restserver line 7 Java Problem我在这里做错了什么?我不需要包括任何其他的jar?我有吗?
发布于 2012-03-06 16:19:50
您不应该使用Sun的内部包,因为它们可能不会出现在其他VM中。如果您确定不会使用Sun/Oracle之外的其他VM,则可以在项目属性中禁用此警告-> Java编译器->错误/警告->已弃用和受限制的->
https://stackoverflow.com/questions/9579970
复制相似问题