本文主要是介绍java IO流之试用软件试用次数情况的模拟,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
要求:模拟软件显示试用次数
思路:
1.创建带缓冲的输入流对象,需使用readLine方法保证数据的原样性
2.将读取到的字符串转换成int数
3.对int数进行判断,大于0则一一写回,不大于0则提示购买正版
4.if判断中将结果打印并通过输出流写到文件上
整体来说就是从times.txt文本中读取试用次数,每运行一次次数减一并重新写入原文本中.当运行次数为0时给出正版购买提示.
代码实现:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;public class SoftwareTrialTimes { //试用软件使用次数情况模拟public static void main(String[] args) throws IOException {BufferedReader br = new BufferedReader(new FileReader("times.txt"));String line = br.readLine();int times = Integer.parseInt(line);if (times > 0) {System.out.println("您还有" + --times + "次试用机会");FileWriter fw = new FileWriter("times.txt");fw.write(times + "");fw.close
这篇关于java IO流之试用软件试用次数情况的模拟的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!