public class Test4 {
/*
试用10次机会,执行一次就提示一次您还有几次机会,如果次数到了提示请购买正版
@throws IOException
分析:
1,创建带缓冲的输入流对象,因为要使用readLine方法,可以保证数据的原样性
2,将读到的字符串转换为int数
3,对int数进行判断,如果大于0,就将其--写回去,如果不大于0,就提示请购买正版
4,在if判断中要将--的结果打印,并将结果通过输出流写到文件上
*/
public static void main(String[] args) throws IOException {
//1,创建带缓冲的输入流对象,因为要使用readLine方法,可以保证数据的原样性
BufferedReader br = new BufferedReader(new FileReader("config.txt"));
//2,将读到的字符串转换为int数
String line = br.readLine();
int times = Integer.parseInt(line); //将数字字符串转换为数字
//3,对int数进行判断,如果大于0,就将其--写回去,如果不大于0,就提示请购买正版
if(times > 0) {
//4,在if判断中要将--的结果打印,并将结果通过输出流写到文件上
System.out.println("您还有" + times-- + "次机会");
FileWriter fw = new FileWriter("config.txt");
fw.write(times + "");
fw.close();
}else {
System.out.println("您的试用次数已到,请购买正版");
}
//关闭流
br.close();
}
} |
|