摘要: FileChannel带缓冲//1. read the point locationFileChannel channelRead = FileChannel.open(Paths.get("E:\\888.txt"), StandardOpenOption.READ... 阅读全文
posted @ 2018-02-08 23:27 刘达人186 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1. 新建Maven项目2. 新建github repository3. 执行命令echo "# se" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add o... 阅读全文
posted @ 2018-02-08 12:36 刘达人186 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 1. 进入当前的项目根目录执行git inittouch .gitignore2. 过滤class文件或指定目录*.class/target/3. 提交git add .将所有文件提交到git,会过滤class和target文件夹3. 提交git commit -m ... 阅读全文
posted @ 2018-02-08 11:13 刘达人186 阅读(1818) 评论(0) 推荐(0) 编辑