xiaochengxu

Posted yrswby2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xiaochengxu相关的知识,希望对你有一定的参考价值。

public class One {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new FileReader("20190815\bw.txt"));
String line = br.readLine();//只有一个数据,直接读取一次就可以了
br.close();
int count = Integer.parseInt(line);
if(count == 3){
System.out.println("本软件只能免费使用3次,欢迎您注册会员后继续使用");
}else{
System.out.println("欢迎使用本软件,第"+ ++count + "次使用免费");
}
BufferedWriter bw = new BufferedWriter(new FileWriter("20190815\bw.txt"));
bw.write(48+count);
bw.close();

}
}

以上是关于xiaochengxu的主要内容,如果未能解决你的问题,请参考以下文章

python yyds

微信小程序资料收集

小程序wxParse插件的使用

wxParse(富文本插件)的用法

「小程序JAVA实战」小程序的组件(23)

「小程序JAVA实战」 小程序的事件(11)