具体错误信息如下: Error 139 Could not write lines to file "obj\Debug\SanSuiWeb.csproj.FileListAbsolute.txt". Access to the path 'F:\三随Demo\SanSuiSolution\SanSuiWeb\obj\Debug\SanSuiWeb.csproj.FileListAbsolute.txt' is denied. SanSuiWeb 处理办法: 让web程序根目录的bin…
今天使用命令mvn compile编译maven项目时提示错误信息,部分错误信息如下: ...... was cached in the local repository, resolution will not be reattempted until the update interval of nexus ...... 发现proxool-0.9.1.jar下载到本地时失败,从提示可知是本地仓库的缓存(cached)造成,于是我删除目录C:\Users\Administrator\.m2\…
在Ubuntu14.04 64位系统中已经安装了libc6:i386的库,编译Uboot时提示error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory. 出错原因是:缺少lib32z1库 解决方法:sudo apt-get install lib32z1…
有用户提出在编译代码时出现源文件“D:\.......ervice.cs”未能打开(“此实现不是 Windows 平台 FIPS 验证的加密算法的一部分.”)的问题,如下图所示: 对于上面的问题,只需要修改下注册表即可处理,方法如下: 1.以管理员方式启动命令行工具后输入regedit,回车打开注册器:. 2.打开注册表后,进入路径:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy 将 enab…
在Ubuntu下调试项目时使用TOMCAT容器,在设置好相应的TOMCAT LOCAL 路径及相关信息后,点击调试项目出现: Unable to open debugger port : java.net.SocketException “Socket closed” 网上搜了一大堆,好像都和自己的情况不一样. 后面偶然发现TOMCAT的Bin目录里面的.sh全部都没有可执行权限.果断切换到Bin目录下: chmod +x *.sh; 一切都顺顺利利的了. 原来是因为自己提取文件的时候将可执行的…