上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: 待写。。。 阅读全文
posted @ 2020-03-26 18:06 _DC 阅读(170) 评论(0) 推荐(0)
摘要: 将jar包打好后运行报错 View Code 解决方案: 因为依赖jar包中的META-INF中有多余的.SF文件与当前jar包冲突 解决方法:已经打完包了: zip -d your.jar 'META-INF/.SF' 'META-INF/.RSA' 'META-INF/*SF' 1或者 打包之前 阅读全文
posted @ 2020-03-26 17:05 _DC 阅读(2576) 评论(0) 推荐(0)
摘要: 代码: import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLCo 阅读全文
posted @ 2020-03-24 16:29 _DC 阅读(531) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <style> .textarea{ width: 400px; min-height: 20px; max-hei 阅读全文
posted @ 2020-01-17 17:39 _DC 阅读(144) 评论(0) 推荐(0)
摘要: 官方代码示例: /* * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that 阅读全文
posted @ 2020-01-15 17:33 _DC 阅读(1037) 评论(0) 推荐(0)
摘要: webrtc官方的代码示例: /* * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license 阅读全文
posted @ 2020-01-15 17:29 _DC 阅读(1155) 评论(0) 推荐(0)
摘要: 先记录下,以后再研究 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Page Not Found</title> <style> #ckbox:checked:after{ opacity: 1; } #c 阅读全文
posted @ 2020-01-13 18:02 _DC 阅读(1389) 评论(0) 推荐(0)
摘要: stun:stun.ideasip.comstun:stun.schlund.destun:stun.voiparound.comstun:stun.voipbuster.comstun:stun.voipstunt.comstun:stun.xten.com 阅读全文
posted @ 2020-01-10 14:56 _DC 阅读(2751) 评论(0) 推荐(0)
摘要: 来码! <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> #conttainer { width: 300px; height: 300px; background-color: beige; } 阅读全文
posted @ 2019-12-31 11:44 _DC 阅读(495) 评论(0) 推荐(0)
摘要: 在使用javascript中的replace替换字符串中的字符时,发现只能替换第一个匹配的字符,后面的都没有替换。 "aaaaaa".replace("a","b"); 返回的字符串是 baaaaa 应该这样写 "aaaaaa".replace(/a/g,"b"); 阅读全文
posted @ 2019-12-26 18:38 _DC 阅读(4514) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页