Import access restriction in java

前端 未结 2 839
无人及你
无人及你 2020-12-20 22:29

I have this import in my code:

import com.sun.jmx.snmp.SnmpOidDatabaseSupport;

but i get following error:

Access restrictio         


        
相关标签:
2条回答
  • 2020-12-20 23:05

    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

    0 讨论(0)
  • 2020-12-20 23:25

    As you are referencing a library in Program Files folder you might not be running eclipse with administrator permission. try running eclipse with administrator permission.

    or you can follow this post Access restriction on class due to restriction on required library rt.jar?

    0 讨论(0)
提交回复
热议问题