- <img alt="" src="http://bbs.itheima.com/forum.php?mod=image&aid=81107&size=300x300&key=5935d1393c2840ae&nocache=yes&type=fixnone" border="0" aid="attachimg_81107">
- import java.io.File;
- import java.io.IOException;
- public class Game_IO {
- public static void main(String[] args) throws IOException {
- //首先将一段话定义到一个字符串数组中
- String[] st = { "我", "爱", "你", "如", "果", "非", "要", "在", "这", "份", "AI",
- "上", "加", "壹", "个", "期", "限", "Me", "希", "望", "是", "一", "万",
- "年" };
- //记下第一个时间
- Long long1 = System.currentTimeMillis();
- //定义一个局部变量,用于后面记录第二个时间
- Long long2 = 0L;
- File file = new File("D:\\Games");
- file.mkdir();
- //定义一个记数变量,用于取出 st 字符串数组对应角标值。
- int count = 0;
- //进入循环,打印出已经定义好的字符串数组中的内容。
- while (true) {
- //记下程序运行到此时的时间
- long2 = System.currentTimeMillis();
- //当两个时间差到达一定的值后,进行下一步操作
- if (long2 - long1 > 2000) {
- long1 = long2;
- String s = st[count];
- //向目标路径写入 st 数组内的内容
- File newFile = new File(file, st[count++]);
- boolean flag = newFile.createNewFile();
- //在控制台,输出
- System.out.println(s + flag);
- }
- //当 st 字符数组中的内容输入完后,结束程序。
- if (count >= st.length) {
- System.exit(0);
- }
- }
- }
- }
复制代码
只是写完,只能自己玩,单身狗没有对象看!
|
|