2个回答
展开全部
public class Hello {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
Hello hello = new Hello();
String path = "D:/abc.txt";
// 写入文件
hello.writeFile(path, "Hello world !");
// 删除文件
//hello.deleteFile(path);
}
/**
* 文件写入
* @param path 文件路径
* @param pValue 写入内容
* @throws IOException IO异常
*/
private void writeFile(String path, String pValue) throws IOException{
File file = new File(path);
FileOutputStream fos = new FileOutputStream(file);
fos.write(pValue.getBytes());
fos.flush();
fos.close();
}
/**
* 根据路径删除文件
* @param path 文件路径
* @throws IOException IO异常
*/
private void deleteFile(String path) throws IOException{
File file = new File(path);
if(file.exists()){
file.delete();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询