本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
css set a4 paper size
HTML
<div class="book">
<div class="page">
<div class="subpage">Page 1/2</div>
</div>
<div class="page& ...
CSS Paged Media - @page Rule
Paged media differ from continuous media in that the content of the document is split into one or more discrete pages. Paged media includes paper, transparencies, pages that are displayed on computer ...
jquery分页打印
js 实现分页打印功能的整理,完整示例,参考地址: http://brzore.iteye.com/blog/1555720
jquery 实现分页打印,自定义页眉页脚,浏览器自带页眉页脚,需要手动关闭,js似乎无权限操作浏览器本身的东西
Print when Textarea has overflow
Hi All,
I’d like to simply share to spread the knowledge, what I have been looking for this lately.
This is used in one of my projects at work, so far this code looks good on different
browsers (it’s ...
Javascript调用IE print功能
Javascript调用IE print功能
onClick="window.print()"
js的window.print不打印网页中的“打印”按钮:
用CSS控制是否打印,如,写一个用于打印的类,:
<style type="text/css" media="print">
.noprint { ...
VB6.0 Printer 对象常数
转自:http://hi.baidu.com/plbuzgdowpdlmnr/item/cb0016fe1fa7176b3d1485eb
VB6.0 Printer 对象常数
打印机颜色模式常数 值 描述 vbPRCMMonochrome 1 单色输出 vbPRCMCol ...
打印时能够分页打印的CSS控制参考(转)
原文引自:http://zhaohuiwuhan.spaces.live.com/blog/cns!73C6682D4AF70DBA!393.entry?_c=BlogPartCSS 与打印控制
打印时如何控制不显示某些页面元素
<style>@media print{INPU ...
Linux AWK 命令
sample文件如下, 便于测试:
Heigh-ho! sing, heigh-ho! unto the green holly:
Most friendship is feigning, most loving mere folly:
Then, heigh-ho, the holly!
一. 使用
1. 显示全部内容:
awk '{ print }' sample
解释 ...
ps grep kill 联合使用
ps -ef |grep telecomnavidb |awk '{print $2}'|xargs kill -9
这条命令的意思是把telecomnavidb这个进程给杀掉。
find ./ -name '*03-08-2012' -exec cp {} /home/fuchw/ \;
这是文件的检索到拷贝
PrintWriter、PrintStream的苦头 ------ 缓冲区问题
由于PrintWriter的简便性,即只需要print()语句即可输出任何内容,因此用到这个类的次数非常多,但是我经常会忽视在构造方法中:new PrintWriter(new FileOutputStream(),true
);
如果没有加这个true,后果非常匪夷所思。。。
不仅在文件流的操作,而且在网络编程Socket时,也会通过PrintWriter ...