以下是引用千里冰封在2007-1-30 23:46:15的发言:我终于发现了,你的代码写错了,
应该是
[CODE]public void read() //读文件
{
String strIn;
try
{
while((strIn = br.readLine())!=null)
{
strIn=strIn.replaceAll("\u3000"," ");
Matcher m = Pattern.compile("
\\d\\s+").matcher(strIn);
while(m.find())//是while而不是if,并且你的写出也经移到全部配完之后
{
String out = m.group();
strIn = strIn.replaceFirst(out,out.trim()+",");
System.out.println(strIn);
// toFormatIp(strIn);
}
write(strIn); }
}
catch (IOException e)
{
e.printStackTrace();
}
}[/CODE]
再请问一下,这里的write在while里面和在外面有什么区别吗?
当然结果是一个正确一个错误了..
可是从表面看上去,都是把更改后的strln写入文件呀..