上一页 1 ··· 184 185 186 187 188 189 190 191 192 ··· 327 下一页
摘要: # 显示总大小(/下全部文件占用大小)du -sh /* | sort -nr# 显示各文件夹的大小(当前文件夹下各文件夹的大小)du --max-depth=1 阅读全文
posted @ 2015-02-01 20:00 emanlee 阅读(2130) 评论(0) 推荐(0) 编辑
摘要: # sorting examples using the mtcars datasetattach(mtcars)# sort by mpgnewdata <- mtcars[order(mpg),]# sort by mpg and cylnewdata <- mtcars[order(mpg, 阅读全文
posted @ 2015-01-28 15:09 emanlee 阅读(3479) 评论(0) 推荐(0) 编辑
摘要: 出现错误:Jan 23, 2015 4:19:21 PM org.apache.catalina.core.StandardWrapperValve invokeSEVERE: Servlet.service() for servlet [DisplayChart] in context with ... 阅读全文
posted @ 2015-01-23 17:20 emanlee 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: 实例 定义和用法shape 属性与 coords 属性配合,可以规定区域的尺寸、形状和位置。详细解释:shape 属性用于定义图像映射中对鼠标敏感的区域的形状:圆形(circ 或 circle)多边形(poly 或 polygon)矩形(rect 或 rectangle)shape 属性的... 阅读全文
posted @ 2015-01-22 16:10 emanlee 阅读(976) 评论(0) 推荐(0) 编辑
摘要: HTML vertical text (Safari, Firefox, Chrome, and Opera).vText { -moz-transform: rotate(-90deg) translate(0, 100%); -moz-transform-origin: 0% 100%;... 阅读全文
posted @ 2015-01-22 15:25 emanlee 阅读(4946) 评论(0) 推荐(1) 编辑
摘要: CONVERT(expr USING transcoding_name)CONVERT(expr,type)类型必须用下列的类型:可用的类型 二进制,同带binary前缀的效果 : BINARY 字符型,可带参数 : CHAR() 日期 : DATE 时间: TIME 日期时间型 : D... 阅读全文
posted @ 2015-01-22 11:28 emanlee 阅读(914) 评论(0) 推荐(0) 编辑
摘要: mysql查询结果导出/输出/写入到文件方法一:直接执行命令:mysql> select count(1) fromtable into outfile'/tmp/test.xls';Query OK, 31 rows affected (0.00 sec)在目录/tmp/下会产生文件test.xl... 阅读全文
posted @ 2015-01-19 13:40 emanlee 阅读(122734) 评论(0) 推荐(4) 编辑
摘要: Solution 1: 修改1列 update student s, city c set s.city_name = c.name where s.city_code = c.code; Solution 2: 修改多个列 update a, b set a.title=b.title, a.na 阅读全文
posted @ 2015-01-18 17:16 emanlee 阅读(26629) 评论(0) 推荐(1) 编辑
摘要: 示例一,饼图,简单示例:导入jar,代码文件:运行结果:代码:import org.jfree.chart.ChartFactory;import org.jfree.chart.ChartFrame;import org.jfree.chart.JFreeChart;import org.jfre... 阅读全文
posted @ 2015-01-17 09:32 emanlee 阅读(3626) 评论(0) 推荐(0) 编辑
摘要: 方案一:修改虚拟内存,让虚拟内存的大小略微超过要复制的文件的大小。方案二:修改注册表,如下:注册表设置1单击开始,单击运行,在打开框中键入“REGEDIT“ ,然后单击“确定”。找到并单击下面的注册表子项:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Con... 阅读全文
posted @ 2015-01-09 15:05 emanlee 阅读(6370) 评论(0) 推荐(0) 编辑
上一页 1 ··· 184 185 186 187 188 189 190 191 192 ··· 327 下一页