代码拉取完成,页面将自动刷新
package szys;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;
import java.io.Writer;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Histroy {
String qstr;
String astr;
String str;
String str2 = "0 0";
double tot = 0;
double rn = 0;
public List<String> qstrlist = new ArrayList<String>();
public List<String> astrlist = new ArrayList<String>();
public Histroy() {
}
public void scan(String qstr, String astr) {
str = (astr + " " + qstr);
}
public void scan2(int tot, int rn) {
str2 = (tot + " " + rn);
}
public void Histroy_create() {
String path = "f:\\Myapp";
File f = new File(path);
if (!f.exists()) {
f.mkdirs();
String fileName = "histroy.txt";
File file = new File(f, fileName);
if (!file.exists()) {
Writer writer = null;
try {
writer = new OutputStreamWriter(new FileOutputStream(file), "UTF-8");
} catch (UnsupportedEncodingException | FileNotFoundException e) {
e.printStackTrace();
}
try {
if (writer != null) {
writer.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
f.mkdirs();
String fileName2 = "histroy_num.txt";
File file2 = new File(f, fileName2);
if (!file2.exists()) {
Writer writer = null;
try {
writer = new OutputStreamWriter(new FileOutputStream(file2), "UTF-8");
} catch (UnsupportedEncodingException | FileNotFoundException e) {
e.printStackTrace();
}
try {
if (writer != null) {
writer.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
Histroy_saveNum();
}
}
public void Histroy_save() {
FileWriter writer;
String fileName = ("f:\\Myapp\\histroy.txt");
try {
writer = new FileWriter(fileName, true);
writer.write(str);
writer.write("\r\n");
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void Histroy_saveNum() {
FileWriter writer2;
String fileName2 = ("f:\\Myapp\\histroy_num.txt");
try {
writer2 = new FileWriter(fileName2, true);
writer2.write(str2);
writer2.write("\r\n");
writer2.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void Histroy_read() throws FileNotFoundException {
Scanner in = new Scanner(new File("f:\\Myapp\\histroy.txt"), "UTF-8");// 为历史信息.tit这个File创建一个扫描器in
while (in.hasNextLine()) {
String line = in.nextLine();// 读出历史信息.txt的下一行
Scanner lineScanner = new Scanner(line);// 为每一行建立一个扫描器
lineScanner.useDelimiter(" ");// 使用空格作为分隔符
qstr = lineScanner.next();// 问题
astr = lineScanner.next();// 答案
qstrlist.add(qstr);
astrlist.add(astr);
}
in.close();
}
public void History_num() throws FileNotFoundException {
Scanner in = new Scanner(new File("f:\\Myapp\\histroy_num.txt"), "UTF-8");// 为历史信息.tit这个File创建一个扫描器in
while (in.hasNextLine()) {
String line = in.nextLine();// 读出历史信息.txt的下一行
Scanner lineScanner = new Scanner(line);// 为每一行建立一个扫描器
lineScanner.useDelimiter(" ");// 使用空格作为分隔符
tot = Integer.parseInt(lineScanner.next());// 问题
rn = Integer.parseInt(lineScanner.next());// 答案
}
in.close();
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。