码迷,mamicode.com
首页 >  
搜索关键字:head tail ‘tail -f’ ‘tail -f’    ( 36072个结果
jackson readTree
String jsonstr = "{\"msg\":{\"head\":{\"version\":\"1.0\",\"bizcode\":\"1006\",\"senddate\":\"20140827\",\"sendtime\":\"110325\",\"seqid\":\"1\"},\"bo...
分类:其他好文   时间:2014-08-27 14:39:18    阅读次数:131
解决错误 fatal error C1010: unexpected end of file while looking for precompiled head
在编译VS时候,出现fatal error C1010: unexpected end of file while looking for precompiled head。问题详细解释:致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的问文件。顾名思义就是预编译因为缺少了预编译文件而失败。解决方法显然可以取消预编译,或者帮助编译器找到预编译文件。故解法:1...
分类:其他好文   时间:2014-08-27 13:05:57    阅读次数:192
【Java】【jquery】ajax乱码问题
1、建议HTML、JSP文件本身采用UTF-8格式 2、HTML的head中增加:      "Content-Type" content="text/html; charset=UTF-8">    3、JSP文件头增加      "text/html;charset=utf-8" pageEncoding="GBK"%>   4、在你的tomcat或者jboss的serv...
分类:编程语言   时间:2014-08-27 13:00:57    阅读次数:172
邻接表的使用及和vector的比较
这几天碰到一些对建边要求挺高的题目。而vector不好建边,所以学习了邻接表。。 下面是我对邻接表的一些看法。 邻接表的储存方式 邻接表就是就是每个节点的一个链表,并且是头插法建的链表,这里我们首先用数组进行模拟。。first [u],next[e]分别表示节点u的第一条边的编号,第e条边的下一条边的编号。。则实现代码为: next[e]=head[u[e]]; head[u[e]]=...
分类:其他好文   时间:2014-08-27 11:03:57    阅读次数:318
Linux 输出文件列数,拼接文件
如果我只想看看文件的前几行,每行的字段数(列数),我的文件已tab作为分隔符(这个可以自己指定),其具体命令如下:head fileName | awk -F'\t' '{print NF}'如果想着想着按列拼接文件,可用:paste -d'\t' file1 file2如果想着把一个空字段,拼接到...
分类:系统相关   时间:2014-08-26 22:41:26    阅读次数:278
html5开发之viewport使用
一、网页手机wap2.0网页的head里加入下面这条元标签,在iPhone的浏览器中页面将以原始大小显示,并不允许缩放。 <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, max...
分类:Web程序   时间:2014-08-26 20:02:47    阅读次数:263
HDU 2665 Kth number
题解:求区间K小,函数式线段树模板题。#include #include #include using namespace std;const int N=3000005;struct node{int num,id;}a[N];int T,n,m,x,y,z,tot,b[N],head[N],so...
分类:其他好文   时间:2014-08-26 15:25:46    阅读次数:195
cheap ghd online has used the Gillette Fusion
DesignFor whoever cheap ghd online has used the Gillette Fusion or even the Mach 3, You'll know about the Schick's"Paintbrush" Sort head. Most notably...
分类:其他好文   时间:2014-08-26 13:29:06    阅读次数:215
jQuery遍历json实例
在线调用jquery <!DOCTYPE?html?PUBLIC?"-//W3C//DTD?HTML?4.01?Transitional//EN"?"http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta?http-equiv="Content-Type"?content="text/html;?cha...
分类:Web程序   时间:2014-08-26 11:58:16    阅读次数:257
linux 杂记
一、设置定时任务 crontab 新增:crontab -e二、日志查看 tail -200f logs/catalina.out三、mysql备份shell #!/bin/bash# Shell script to backup MySql database# Author: Henry h...
分类:系统相关   时间:2014-08-26 11:27:55    阅读次数:292
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!