使用JPEGImageEncoder提示Access restriction:錯誤 解決方案

2meng發表於2014-12-18
當我們在對圖片進行操作時,需要使用到 
  JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out); 
            JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(tag); 
這個時候eclipse會報錯:Access restriction: The type JPEGImageEncoder is not accessible due to restriction on required library C:\Java\jre1.6.0_07\lib\rt.jar
 
這個是eclipse的設定問題,它預設把這些受訪問限制的API設成了ERROR,你只要把 
Windows-Preferences-Java-Complicer-Errors/Warnings 
裡面的Deprecated and restricted API中的Forbidden references(access rules)選為Warning就可以編譯通過了。

相關文章