
开发小问题
文章平均质量分 50
开发中遇到的小问题
菜又学
默默奋斗的小白。
展开
-
freeradius:tls: error:0200100D:system library:fopen:Permission denied
freeradius运行出现如下错误:tls: Failed reading certificate file "/etc/raddb/certs/server.pem"tls: error:0200100D:system library:fopen:Permission deniedtls: error:20074002:BIO routines:file_ctrl:system libtls: error:140DC002:SSL routines:use_certificate_chain_原创 2021-12-01 16:30:12 · 2709 阅读 · 0 评论 -
centos7遇到问题AttributeError: module object has no attribute‘ dump_publickey
python版本是2.7该问题的解决方法是:在官网下载Anaconda,下载地址为:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/下载的是Anaconda2-5.3.1-Linux-x86_64.sh 617.8 MiB 2018-11-20 03:55 下载完成之后执行下面命令安装:shAnaconda2-5.3.1-Linux-x86_64.sh安装过程会输入三四个yesvc-code不能安装的问.原创 2021-09-26 18:18:07 · 498 阅读 · 0 评论 -
在centos7系统下解决java程序需要依赖外部jar包的问题
javac -cp ./xxxx.jar bbbbb.java-cp也可以换成-classpath转载 2020-11-11 10:37:13 · 337 阅读 · 0 评论 -
centos 7 不能读移动硬盘WD Elements SE
因为centos7中缺少ntfs文件系统,运行如下命令进行安装即可:wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repoyum updatesudo yum install ntfs-3g注:运行时间比较长,耐心等待。转载 2020-11-06 17:17:10 · 2535 阅读 · 0 评论 -
android studio:Android开发如何获得按钮中的内容
使用代码如下:final String[] buttonText = new String[1];buttonText[0] = button.getText().toString();buttonText[0]中内容为button按钮的内容!原创 2020-11-05 15:12:08 · 1391 阅读 · 0 评论 -
android studio中 import org.apache.commons.codec.binary.Base64;不存在
缺少jar包,需要导入commons-codec-1.15.jar下载连接为https://commons.apache.org/proper/commons-codec/download_codec.cgi因为我是win10下的Android studio,所以下载zip格式的压缩包转载 2020-11-04 07:57:53 · 10559 阅读 · 0 评论