2016-08-23 craneyuan
在jdk1.7之前,java中没有直接的类提供文件复制功能。下面就文件复制,提出几种方案。 jdk1.7中的文件复制 在jdk1.7版本中可以直接使用Files.copy(File srcFile, File destFile)方法即可。 private static void copyFileUsingJava7Files(File source, File dest) throws IOException { Files.copy(source.toPath(), dest.toPath()); } 使用FileInputStream复制 more /** * * @Title: copyFileUs 继续阅读 »
2014-04-28 刘太华
这里记录的是现在所在游戏的cpp代码里的, 关于事件调度和触发的源码分析. EventDispatcher 是一个事件调度者 Event 事件基类 EventReceiver 所有需要接收世界的对象的基类, 它们都对EventReceiver做继承. 并重写RecieveEvent方法. 继续阅读 »
2017-12-05 Quanyin Tang
<a href="/Source/images/post-content/post-title/post-example.png"> <img data-src="/Source/images/post-content/post-title/post-example.png" class="lazyload" alt=" " /> </a> 继续阅读 »
2015-06-25 王财勇
Github page允许将自己的域名与它提供的二级域名绑定,这样,我们可以在访问自己的域名时直接跳转到我们的Github博客主页。下面我们将阐述具体的方法。(以下按照先后顺序进行) more GitHub Pages的设置 方法一:在Repository的根目录下面,新建一个名为CNAME的文本文件,里面写入你要绑定的域名,比如wangcaiyong.com。 方法二:到我的github仓库,点击右下角的「Download ZIP」,下载源文件,解压,找到CNAME文件,用记事本打开,将wangcaiyong.com修改成你的域名,放进Hexo\source目录下,用hexo命令提交上去。 $ hexo d -g 部署后, 继续阅读 »
2014-10-23 Xie Jingyi
鉴于U盘中Sublime的配置常常莫名其妙地消失,在此将其记录一下。 Code { "cmd": ["fpc", "-S2", "${file}", "-o${file_path}/${file_base_name}.exe"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "working_dir": "${file_path}", "selector": "source.pascal", "variants": [ { "name": "Run", "c 继续阅读 »
2018-02-03 ruki
This release provide user custom menu config, like make menuconfig for linux: If you want to known more usage, please see online documents。 Source code: Github, Gitee. New features Add del_files() api to delete files in the files list Add rule(), add_rules() api to implement the custom build rule and improve add_ 继续阅读 »
2014-08-19 ALEX LIN
1.安装flash 从flash官网下载对应的版本的压缩包。(https://www.adobe.com/support/flashplayer/downloads.html) 解压文件,拷贝文件。 sudo cp libflashplayer.so /usr/lib/mozilla/plugins/ sudo cp -r ./usr/* /usr/ 2.安装RVM curl -L https://get.rvm.io | bash -s stable source ~/.rvm/scripts/rvm rvm install 2.0.0 rvm use 2.0.0 /bin/bash --login 3.安装s 继续阅读 »
2016-06-26 ruki
A simplest xmake.lua ```lua -- define a target with named 'demo' target("demo") -- set the target kind, .e.g 'binary' is a console program -- - static: a static library -- - shared: a shared library set_kind("binary") -- add all c source files in the directory: src add_files("src/*.c" 继续阅读 »
2015-11-20 Klaus Ma
Named namespaces in Google Code Style Namespaces wrap the entire source file after includes, gflags definitions/declarations and forward declarations of classes from other namespaces. 继续阅读 »
2016-03-25 Xiaosong Gao
Web
编译运行配置 编写Gemfile: source 'https://rubygems.org' gem 'jekyll' gem 'jekyll-sitemap' gem 'jekyll-paginate' gem 'html-proofer' gem "codeclimate-test-reporter", group: :test, require: nil 继续阅读 »