我终于发现了,你的代码写错了,
应该是
[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]
应该是
[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]
可惜不是你,陪我到最后