摘要:
FileChannel带缓冲//1. read the point locationFileChannel channelRead = FileChannel.open(Paths.get("E:\\888.txt"), StandardOpenOption.READ... 阅读全文
摘要:
1. 新建Maven项目2. 新建github repository3. 执行命令echo "# se" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add o... 阅读全文
摘要:
1. 进入当前的项目根目录执行git inittouch .gitignore2. 过滤class文件或指定目录*.class/target/3. 提交git add .将所有文件提交到git,会过滤class和target文件夹3. 提交git commit -m ... 阅读全文