Skip to content

Instantly share code, notes, and snippets.

View liutian's full-sized avatar
🎯
Focusing

liuss liutian

🎯
Focusing
View GitHub Profile
@liutian
liutian / gist:6724612
Created September 27, 2013 05:47
常用的主机监控Shell脚本
1.查看主机网卡流量
#!/bin/bash
#!/bin/bash
#network
#Mike.Xu
while : ; do
time='date +%m"-"%d" "%k":"%M'
day='date +%m"-"%d'
rx_before='ifconfig eth0|sed -n "8"p|awk '{print $2}'|cut -c7-'
@liutian
liutian / javaDownLoadFile
Created September 26, 2013 10:08
java servlet downLoadFile
//重设response
response.reset();
//设置要下载的文件content-Type
response.setContentType("application/x-msdownload");
//设置下载文件的名字
String fileName = (new File(filePath)).getName();
response.addHeader("Content-Disposition", "attachment; filename="+fileName);
//获取文件输入流
FileInputStream fileIn = new FileInputStream(filePath);
//获得输出流