读取数据到txt中
@Test
public void testReadExcel() throws IOException {
StringBuffer s = new StringBuffer();
s.append("afda dfd");
s.append("\t");
s.append("df/d");
s.append("\t");
s.append("\n");
s.append("afda dfd");
s.append("\t");
s.append("df/d");
s.append("\t");
s.append("\n");
s.append("afda dfd");
s.append("\t");
s.append("df/d");
s.append("\t");
s.append("\n");
File f = new File("d:/ddd/ddd.txt");
if (!f.getParentFile().exists()) {
f.getParentFile().mkdirs();
f.createNewFile();
}
OutputStream out = null;
try {
out = new FileOutputStream(f);
out.write(s.toString().getBytes());
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
本博客中所有内容为本人自学及总结内容,
仅代表个人观点,如有错误,麻烦大家及时指出并提示我更正。谢谢