梦开始的地方reesun.blog.chinaunix.net
reesun
全部博文(333)
spider(0)
理论(0)
cpp(2)
Java(14)
PHP(12)
汇编(4)
python(12)
C语言(30)
hadoop(0)
sips(1)
Gluster(8)
Oracle(2)
nginx(4)
mysql(3)
Apache(2)
memcached(7)
Apache模块(5)
Apache管理(9)
服务器搭建(1)
Kernel Driver(3)
类Unix环境/系统(2)
redhat(4)
Ubuntu(38)
认证(0)
应用(8)
基础知识(32)
redis(3)
Postfix util源码(0)
memcached源代码(1)
magent源代码阅读(3)
超文本传送协议学(3)
JOS(10)
程序员(17)
摄影(3)
狗狗(0)
历史(1)
sports(2)
读书(3)
手表(0)
汽车(1)
随笔(3)
影评(0)
人生就是这样(8)
2015年(1)
2011年(116)
2010年(187)
2009年(25)
2008年(3)
2007年(1)
叶绍琛
wangchen
zcyyezi
pqwfree
小雅贝贝
ranson_z
cainoma
枫叶无霜
prolj
wjydlut
LikeFace
少林功夫
cynthia
Bsolar
Phyllis6
浪花小雨
sdhh_zha
13405800
分类: Java
2010-10-12 10:57:58
import java.text.SimpleDateFormat; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.io.*; import java.net.*; public class test { public int count ; private static Hashtable<Integer,String> table = new Hashtable(); public test(int k){ count = k; }
public void docount(){ }
public static void main(String[] args) throws IOException { File f = new File("C:\\Users\\lcy644\\Desktop\\Mac.txt"); BufferedReader br = new BufferedReader(new FileReader(f)); String content = ""; String str = ""; str = br.readLine(); BufferedWriter bw = new BufferedWriter(new FileWriter(f)); while((str=br.readLine())!=null){ String str1 = str.replaceFirst("\\d{1,2}\\.", ""); content += str1; content += "\r\n"; } bw.write(content); bw.close(); } }
上一篇:指针数组和数组指针
下一篇:Apache Prefork和Worker模式的性能比较测试
登录 注册