如何解决下面错误的Java代码
importjava.io.*;publicclassWriteTextPrices{publicstaticvoidmain(String[]args)throwsja...
import java.io.*;
public class WriteTextPrices
{
public static void main (String [] args)
throws java.io.IOException
{
//设置基本的输入流
FileWriter fw = new FileWriter("prices.txt");
// //设置缓冲流
BufferedReader br = new BufferedReader(fw);//为什么这行提示错误?
//这个提供了一组有用的方法
PrintWriter pw = new PrintWriter(bw);//为什么这行提示错误?
pw.println("Mats 39.95");
pw.println("BUlbs 3.22");
pw.println("Fuses 1.08");
pw.close();
}
} 展开
public class WriteTextPrices
{
public static void main (String [] args)
throws java.io.IOException
{
//设置基本的输入流
FileWriter fw = new FileWriter("prices.txt");
// //设置缓冲流
BufferedReader br = new BufferedReader(fw);//为什么这行提示错误?
//这个提供了一组有用的方法
PrintWriter pw = new PrintWriter(bw);//为什么这行提示错误?
pw.println("Mats 39.95");
pw.println("BUlbs 3.22");
pw.println("Fuses 1.08");
pw.close();
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询