摘要:
过去的很多天的一直没有写什么博客,我还没死。 实际上我在忙着几个项目的设计和制作,个人的网站、企业的网站还有一些自媒体的编辑、创作,实在非常抱歉大家对我的等待哈,当前我同时还在山东毛豆科技工作负责微企通、秀企来以及微商会的实现工作。 同时在企业里学了一些SEO和Cor... 阅读全文
摘要:
1.调用RealPlay或RealOne播放器的代码(初步测试能播 rm、rmvb) 2.调用Windows Media Player 播放器代码(初步测试能播 rm、rmvb、avi、wmv) 详细参数 src 音乐文件的路径及文件名; autostart t... 阅读全文
摘要:
public static void writeObjectToFile(Object obj) { File file =new File("test.dat"); FileOutputStream out; try ... 阅读全文
摘要:
阅读全文
摘要:
bash 仅支持一维数组。 而且数组下标是从0开始的为数组赋值:array=(1 4 7 2 5 8) #以空格为分割符,()为数组str="this is test string"str_arr=($str); #默认以空格分割数组遍历:fo... 阅读全文
摘要:
^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$ 阅读全文
摘要:
Software TestingSoftware testing is the process of evaluation a software item to detect differences between given input and expected o... 阅读全文
摘要:
VerificationVerification is the process to make sure the product satisfies the conditions imposed at the start of the development phas... 阅读全文
摘要:
定义:declare -a array=(value1 value2 ...) 存值:array[index]=value 取数:${array[index]} 取所有值:${array[*]}或${array[@]} 长度:${#array[*]} ... 阅读全文
摘要:
This Linux tutorial will explain the three “W” commands. The three “W”s are whatis, whereis and which commands. You already know how t... 阅读全文