Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import access restriction in java

Tags:

java

eclipse

I have this import in my code:

import com.sun.jmx.snmp.SnmpOidDatabaseSupport;

but i get following error:

Access restriction: the type SnmpOidDatabaseSupport is not accessible 
due to restriction on required C:\Program Files\Java\jre6\lib\rt.jar

and also if it could help my IDE is eclipse, how can i fix this error?

like image 945
Lrrr Avatar asked Jan 09 '12 08:01

Lrrr


1 Answers

Take a look here: Access restriction on class due to restriction on required library rt.jar?

It is not exact duplicate to your question but some answers are relevant. Here are the quotes:

http://www.digizol.com/2008/09/eclipse-access-restriction-on-library.html worked best for me.

Windows -> Preferences -> Java -> Compiler -> Errors/Warnings -> Deprecated and trstricted API -> Forbidden reference (access rules): -> change to warning

If you think that this answer is useful please not forget to upvote the answer I quoted here. Go to URL above and find for answer by @scommab

like image 104
AlexR Avatar answered Nov 08 '22 13:11

AlexR