上一页 1 2 3 4 5 6 7 8 ··· 32 下一页
摘要: 页面定制CSS .Cal{padding:0}::-webkit-scrollbar{width:3px}::-webkit-scrollbar-track{width:3px;background-color:#f9f9f9}::-webkit-scrollbar-thumb{background 阅读全文
posted @ 2021-11-05 23:21 丁帅帅dss 阅读(33) 评论(0) 推荐(0)
摘要: vim ~/.vimrc " " "" DesCRiption: 适合自己使用的vimrc文件,for Linux/Windows, GUI/Console " "" syntax on "自动语法高亮 "winpos 5 5 " 设定窗口位置 "set lines=40 columns=155 " 阅读全文
posted @ 2021-11-04 16:07 丁帅帅dss 阅读(53) 评论(0) 推荐(0)
摘要: 1.安装git sudo apt-get install git yum -y install git 2.安装zsh sudo apt-get install zsh yum -y install zsh 3.安装ohmyzsh sh -c "$(wget -O- https://gitee.co 阅读全文
posted @ 2021-11-02 23:22 丁帅帅dss 阅读(178) 评论(0) 推荐(0)
摘要: 1. 更新 -sudo apt-get update 2. 安装 sudo apt install build-essential 3. 查看版本 gcc --version 阅读全文
posted @ 2021-11-01 21:32 丁帅帅dss 阅读(118) 评论(0) 推荐(0)
摘要: 第6次实验课 《课本》第218页 【例8-1】 1. 基于注解实现例8-1的要求 1.0 目录结构 1.1 HelloBean2 package com.ding.bean; import org.springframework.beans.factory.annotation.Value; imp 阅读全文
posted @ 2021-10-29 11:10 丁帅帅dss 阅读(56) 评论(0) 推荐(0)
摘要: package com.ding.stream; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.stream.Stream; public class M 阅读全文
posted @ 2021-10-28 21:56 丁帅帅dss 阅读(69) 评论(0) 推荐(0)
摘要: 切换阿里源 sudo vim /etc/apt/sources.list 加上 deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.aliyun 阅读全文
posted @ 2021-10-26 20:27 丁帅帅dss 阅读(39) 评论(0) 推荐(0)
摘要: 案例 创建一个集合,存储多个字符串元素 把集合中所有以"张"开头的元素存储到一个新的集合 把"张"开头的集合中的长度为3的元素存储到一个新的集合 传统方法 package com.ding.stream; import java.util.ArrayList; public class MyStre 阅读全文
posted @ 2021-10-25 20:24 丁帅帅dss 阅读(71) 评论(0) 推荐(0)
摘要: 目录 在src下建目录lib,将jar包放进去, 右键包全部添加到类路径 8-1 源码 HelloBean package com.ding.bean; /** * @Description TODO * @Author 丁帅帅 * @Date 21/10/22 10:12 * @Version 1 阅读全文
posted @ 2021-10-24 10:06 丁帅帅dss 阅读(152) 评论(0) 推荐(0)
摘要: 用maven运行spring时控制台显示中文一直乱码,全改成UTF8也是乱码, 在pom文件里加入各种指定编码也不行 改下这个属性就行了 -Dfile.encoding=GB2312 或 -Dfile.encoding=GBK 阅读全文
posted @ 2021-10-24 09:46 丁帅帅dss 阅读(66) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 32 下一页