我有一个文件要读取,就像这样
mytxt.txt
1234 http://www.abc.com
8754 http://www.xyz.com
我试过这个
try {
// make a 'file' object
File file = new File("e:/mytxt.txt");
// Get data from this file using a file reader.
FileReader fr = new FileReader(file);
// To store the contents read via File Reader
BufferedReader br = new BufferedReader(fr);
// Read br and store a line in 'data', print data
String data;
while((data = br.readLine()) != null)
{
//data = br.readLine( );
System.out.println(data);
}
} catch(IOException e) {
System.out.println("bad !");
}
我使用了这个,但实际的问题是我想一个一个地读取这两个字符,然后将数字附加到我将作为字符串读取的链接上。谁能告诉我我应该怎么做..?任何帮助,将不胜感激。