摘要: https://blog.csdn.net/innovate1989/article/details/103221959 阅读全文
posted @ 2020-03-11 18:39 姚狗蛋 阅读(238) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/8065f87f454c97233124989e.html 阅读全文
posted @ 2020-03-11 18:37 姚狗蛋 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1 下载ffmpeg https://www.jianshu.com/p/87dfbf76751e 2 MP4视频 -> TS格式 注:文件路径尽量使用英文名 ffmpeg -y -i <mp4源文件路径> -vcodec copy -acodec copy -vbsf h264_mp4toanne 阅读全文
posted @ 2020-03-11 18:35 姚狗蛋 阅读(641) 评论(0) 推荐(0) 编辑
摘要: public class MyStack { private long[] arr; private int top; public MyStack(){ arr = new long[10]; top = -1; } public MyStack(int max){ arr = new long[ 阅读全文
posted @ 2020-03-11 17:39 姚狗蛋 阅读(76) 评论(0) 推荐(0) 编辑
摘要: public class test { public static void main(String[] args) { long[] arr = {45,34,23,12,1}; sort(arr); for (int i = 0; i < arr.length; i++) { System.ou 阅读全文
posted @ 2020-03-11 17:38 姚狗蛋 阅读(87) 评论(0) 推荐(0) 编辑
摘要: hosts文件修改: 1.在应用程序里面打开终端(terminal) 2.输入 sudo vi /etc/hosts 3.接着输入 i 进入编辑模式 4.将添加的域名,ip拷贝进去,我随便取了个域名:192.168.1.51 svnserver 5.编辑完成之后,按esc,输入 ": wq" 可能有 阅读全文
posted @ 2020-03-10 19:30 姚狗蛋 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.jianshu.com/p/7241f7c83f4a 阅读全文
posted @ 2020-03-10 18:38 姚狗蛋 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1 数据库 1-1 切换数据库,如不存在则创建 use ec14 1-2 查询有哪些数据库 show dbs 1-3 查询当前数据库 db 1-4 删除数据库 db.dropDatabase() 2 Collection 2-1 创建集合(表) db.createCollection("stu") 阅读全文
posted @ 2020-03-10 18:37 姚狗蛋 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Module build failed: Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72) For more information on 阅读全文
posted @ 2020-03-10 18:36 姚狗蛋 阅读(1367) 评论(0) 推荐(0) 编辑
摘要: 怎样打包jar 在maven clean先清除 在maven中选择package 就可以在项目所在在的target目录下找到打包好的包 jar包怎样运行 进jar包目录 输入下面代码java -jar jar包的名字.jar 阅读全文
posted @ 2020-03-10 18:30 姚狗蛋 阅读(113) 评论(0) 推荐(0) 编辑