2015/5/7 Access restriction: The type 'BASE64Encoder' is not API

Access restriction: The type 'BASE64Encoder' is not API (restriction on required library 'D:\Java\jdk1.6.0_43\jre\lib\rt.jar')

引入import sun.misc.BASE64Encoder; 是红叉,怎么解决?

2015/5/7 Access restriction: The type 'BASE64Encoder' is not API_第1张图片

右键项目,点属性(Properties);

2015/5/7 Access restriction: The type 'BASE64Encoder' is not API_第2张图片

java bulid path-->Libraries-->jre System Library;

2015/5/7 Access restriction: The type 'BASE64Encoder' is not API_第3张图片

Access Rules-->Edit;

2015/5/7 Access restriction: The type 'BASE64Encoder' is not API_第4张图片

Add,resolution选择accessible,下面填上** 点击确定即可!

2015/5/7 Access restriction: The type 'BASE64Encoder' is not API_第5张图片

这时项目就不再报错了;

2015/5/7 Access restriction: The type 'BASE64Encoder' is not API_第6张图片

jquery检查checkbox看是否选中;

<input id="useInternetUrlInput" type="checkbox">

if($("#useInternetUrlInput").prop("checked")){

}

easyui input 动态加校验 required:true,validType:'length[0,500]'

尼玛 easyui的交互令人抓狂,修改一下input的值都那么困难,加那么多input做屁啊;

clip_image007

最后用validatebox完成,但input不能加class=easyui-textbox,样式自己加class="textbox" style="width: 598px; height: 20px;";

$("#useInternetUrlInput").bind("click", function(){

    if($("#useInternetUrlInput").prop("checked")){

    $("#pageUrlTr").show();

    $("#editorDiv").hide();

    $('#pageUrl').validatebox({

        required: true,

        validType: 'url'

    });

    $("#isUseInternetUrl").val("Y");

}else{

    $("#pageUrlTr").hide();

    $("#editorDiv").show();       

    $('#pageUrl').validatebox({

        required: false

    });

    $("#isUseInternetUrl").val("N");

}

});
                

 

你可能感兴趣的:(BASE64Encoder)