Nemo

Nemo 关注TA

路漫漫其修远兮,吾将上下而求索。

Nemo

Nemo

关注TA

路漫漫其修远兮,吾将上下而求索。

  •  普罗旺斯
  • 负责帅就完事了
  • 写了1,496,113字

首页(共有499文章)

最新发布 最多点击 最多讨论

  • [NodeJS] FS模块

    1、FS模块跟其他模块不同,所有的操作都提供了异步和同步两种方式。2、fs.readFile(filename,[ecoding],[callback(err,data)])异步式读取文件,文件不会被阻塞在读取文件的地方,而会继续往下执行。文件操作完成后,需要通过回调函数指定相应的操作。如果发生异常,会通过回调函数中的err参数通知。文件的内容会通过回调函数传递。=================......

     5,324    0    2016-06-20 22:24

  • VIM复制粘贴剪切

    1.选定文本块。使用v进入可视模式,移动光标键选定内容。2.复制的命令是y,即yank(提起),常用的命令如下:   y     在使用v模式选定了某一块的时候,复制选定块到缓冲区用;   yy   复制整行(nyy或者yny,复制n行,n为数字); ......

     4,564    0    2016-06-17 09:24

  • 【NodeJs]events.EventEmitter事件

    events模块只提供了一个对象:events.EventEmitter.EventEmitter的核心就是事件发射与事件监听器功能的封装。//为指定事件注册监听器,接受一个字符串event和一个回调函数listenerEventEmitter.on(event,listener)//发射event事件,传递若干可选参数到事件监听器的参数表EventEmitter.emit(event,[arg1......

     1,566    0    2016-06-17 00:25

  • 【NodeJS]Util.inspect实体属性输出

    varutil=require('util');functionPerson(){   this.name='Nemo';   this.toString=function(){      returnthis.name;   }}varobj=ne......

     1,977    0    2016-06-17 00:12

  • [NodeJS]Util.inherits,原型继承

    //引入util模块varutil=require('util');//定义函数BasefunctionBase(){   //定义全局变量name和year   this.name='Nemo';   this.year=2016;   //定义了一个私有的sayHello方法......

     2,456    0    2016-06-17 00:06

  • SpringMVC文件上传工具

    /***根据得到的Spring上传的附件自动的加载保存* *@paramfiles*@returnList<Attachment>*@throwsIllegalStateException*@throwsIOException*/@Transactional(readOnly=false)publicList<Attachment>saveAllUploadFil......

     1,893    0    2016-06-16 17:35

  • ExcelUtil

    privatestaticfinalLoggerlogger=LoggerFactory.getLogger(ExcelUtils.class);//成功 publicstaticfinalIntegerSTATUS_OK=Integer.valueOf(1); //失败 publicstaticfinalIntegerSTATUS_NO=Integer.valueO......

     1,909    0    2016-06-16 17:17

  • Ubuntu16.04 系统错误报告屏蔽

    新版本的Ubuntu16.04在使用过程中总会提示一些内部错误,请求报告错误。很是烦人。屏蔽方法如下:$sudorm/var/crash/*$sudovim/etc/default/apport将enabled设置为0

     4,775    0    2016-06-15 22:41

  • [NodeJS]学习资源

    1.学习路线图http://blog.fens.me/nodejs-roadmap/2.视频http://www.icoolxue.com/album/show/89http://www.imooc.com/learn/3483.在线文档http://www.runoob.com/nodejs/nodejs-tutorial.htmlhttps://nodejs.org/api/

     3,109    0    2016-06-14 23:49

  • [NodeJS]读取文件

       varfs=require('fs');    fs.readFile('file.txt','utf-8',function(err,data){        if(err){     &n......

     4,318    0    2016-06-13 21:16

  • [NodeJS]npm 的使用

    安装$npminstallexpress-gnpmWARNcheckPermissionsMissingwriteaccessto/usr/local/lib/usr/local/lib└─┬express@4.13.4├─┬accepts@1.2.13│├─┬mime-types@2.1.11││└──mime-db@1.23.0│└──negotiator@0.5.3├──array-flat......

     3,776    0    2016-06-13 21:07

  • [NodeJS]第一个服务器端程序

    $vimfirstServer.js输入:varhttp=require('http');http.createServer(function(request,response){    response.writeHead(200,{'Content-Type':'text/plain'});    response......

     3,790    0    2016-06-13 20:59

  • [NodeJS]Ubuntu下部署nodejs环境

    有两种方式:1、$sudogitclonehttps://github.com/nodejs/node.git$sudochmod-R755node$cdnode$sudo./configure$sudomake$sudomakeinstall即可完成。输入:$node-v查看Nodejs版本。2、直接使用apt-get方式安装:$sudoapt-getinstallnodejs$sudoapt-......

     3,614    0    2016-06-13 20:57

  • 致未来

        这是2016年的五月末。    时光飞逝。不知不觉,2016年已经要过去一半了。时间真的停不下来,甚至连一秒都不会等待。    我坐在电子所三层的小隔间里。旁边的小空调不断发出习习凉风,让人感觉不到半点夏天的气息。窗外的天空依旧是灰蒙蒙的一片,所幸的是并不是雾霾,然而空气

     4,828    0    2016-05-30 17:10

  • Spring 3 --> Spring 4

    1.Spring3:org.springframework.http.converter.json.MappingJacksonHttpMessageConverterSpring4:org.springframework.http.converter.json.MappingJackson2HttpMessageConverter2.

     4,086    0    2016-05-16 22:20