加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ShiJieBei.java 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
洪盛龙 提交于 2020-11-24 17:33 . 11月21号
package IO;
import java.io.*;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class ShiJieBei {
public static void main(String[] args) throws IOException {
// File f = new File("D:\\Start\\src\\IO流\\Doc");
// FileOutputStream fos = null;
// FileInputStream fis = null;
// try {
// fos = new FileOutputStream(f);
// fis = new FileInputStream(f);
// byte[] b = new byte[1024];
// int len = 0;
// // BufferedReader br = new BufferedReader();
// while ((len = fis.read(b)) != -1) {
//
// }
// } catch (IOException e) {
// e.getStackTrace();
// } finally {
// try {
// fis.close();
// fos.close();
// } catch (IOException e) {
// e.printStackTrace();
// }
//
// }
Scanner input = new Scanner(System.in);
FileReader fr = new FileReader("D:\\Start\\src\\IO流\\Doc\\worldcup.txt");
BufferedReader br = new BufferedReader(fr);
String b = null;
HashMap <String ,String>m = new HashMap();
String name = input.next();
while ((b = br.readLine()) != null) {
m.put(b.substring(0,b.indexOf("/")),b.substring((b.indexOf("/")+1)));
}
for (String s : m.keySet()) {
if(s.equals(name)){
System.out.println(m.get(name));
return;
}
}
System.out.println("本年没有" );
fr.close();
br.close();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化