上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 90 下一页
该文被密码保护。 阅读全文
posted @ 2020-02-08 20:08 Peter.Jones 阅读(0) 评论(0) 推荐(0)
摘要: calc 阅读全文
posted @ 2020-02-08 15:09 Peter.Jones 阅读(345) 评论(0) 推荐(0)
摘要: 可以按以下方式检测电脑最大可支持的内存:1)点“开始”——在“运行”框中输入CMD,按回车键;2)在命令窗口中输入 wmic memphysical get maxcapacity ,按回车键;3)此时系统会给出一串以千字节为单位的数字,把该数字换算成GB单位;换算方法:得到的数字/1024/102 阅读全文
posted @ 2020-02-08 15:07 Peter.Jones 阅读(1010) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/AlexQY/p/10373820.html 阅读全文
posted @ 2020-01-19 10:22 Peter.Jones 阅读(260) 评论(0) 推荐(0)
摘要: private String generateCode() { int min = 100000; int max = 1000000; Random rand = new Random(); int res = this.rand.nextInt(max - min) + min; return 阅读全文
posted @ 2020-01-18 01:20 Peter.Jones 阅读(72) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-01-17 10:51 Peter.Jones 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-01-16 14:29 Peter.Jones 阅读(344) 评论(1) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-01-16 12:02 Peter.Jones 阅读(1) 评论(0) 推荐(0)
摘要: import org.apache.commons.codec.binary.Base64; //下载commons-codec-1.11-bin.zip,调用commons-codec-1.11.jar Base64 base64 = new Base64();String base64Sign 阅读全文
posted @ 2020-01-16 11:10 Peter.Jones 阅读(12223) 评论(0) 推荐(0)
摘要: 当前时间格式化 Date date = new Date(); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); SimpleDateFormat df1 = new SimpleDateFormat( 阅读全文
posted @ 2020-01-16 10:55 Peter.Jones 阅读(475) 评论(0) 推荐(0)
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 90 下一页