JAVA程序 哪位大神能帮忙用eclipse做两道关于I/O问题
两个java问题,请用eclipse完成(简单的方法就好了,最好使用1.PrintWriterClasstoWriteDatatoaFile,2.ReadingLinef...
两个java问题,请用eclipse完成(简单的方法就好了,最好使用1.PrintWriter Class to Write Data to a File,2. Reading Line from a File with the nextLine Method),谢谢
展开
2个回答
展开全部
File file = new File("d://text.txt");
try
{
PrintWriter pw = new PrintWriter(file);
pw.write("hello text");
pw.flush();
pw.close();
System.out.println("写入文件成功!");
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("写入文件失败!");
}
File file1 = new File("d://text.txt");
try
{
FileImageInputStream fis = new FileImageInputStream(file1);
String str = fis.readLine();
System.out.println("读取文件内容第一行:" + str);
fis.close();
}
catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("读取文件信息失败!");
}
try
{
PrintWriter pw = new PrintWriter(file);
pw.write("hello text");
pw.flush();
pw.close();
System.out.println("写入文件成功!");
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("写入文件失败!");
}
File file1 = new File("d://text.txt");
try
{
FileImageInputStream fis = new FileImageInputStream(file1);
String str = fis.readLine();
System.out.println("读取文件内容第一行:" + str);
fis.close();
}
catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("读取文件信息失败!");
}
追问
可以根据图片上问题解答吗?
请提供详细答案,最好在eclipse截图,谢谢
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询