一个非常简单实用的写文件程序
File file = new File("a.js");
try {
FileUtils.writeStringToFile(file, sb.toString(), "utf-8");
}
catch (IOException ex) {
}
一个非常简单实用的写文件程序
File file = new File("a.js");
try {
FileUtils.writeStringToFile(file, sb.toString(), "utf-8");
}
catch (IOException ex) {
}