java读取txt文件的2中方法---并将内容(每一行以…
2018-08-02 05:54:26来源:博客园 阅读 ()
#java读取txt文件的第一种方法
/** * 方法:readTxt * 功能:读取txt文件并把txt文件的内容---每一行作为一个字符串加入到List中去 * 参数:txt文件的地址 * 返回:Map * @param file * @return * @throws IOException */ public static Map<String, String> readTxt(String file) throws IOException { Map<String, String> tempMap = new HashMap<String, String>(); List<String> allLines = Files.readAllLines(Paths.get(file)); //以下为我截取文件内容,一行分成2段,第一段设置为Map的Key,第二段设置为Map的Value for (String line : allLines) { if (line != "") { String[] temp = line.split(" J:: "); if (temp.length == 2) { tempMap.put(temp[0], temp[1]); } } } return tempMap; }
#读取txt文件的第二种方法
public Map<String, String> read() throws Exception{ // List<String> allLines = Files.readAllLines(Paths.get(File)); /* 通常,由读取器做出的每个读取请求将引起对底层字符或字节流的相应读取请求。 因此,建议将BufferedReader包装在其read()操作可能昂贵的读取器上, 例如FileReaders和InputStreamReaders */ FileReader fileReader = new FileReader(File); BufferedReader bufferedReader = new BufferedReader(fileReader); Map<String,String> tempMap = new HashMap<String,String>(); while((lines = bufferedReader.readLine()) != null) { list.add(lines); } bufferedReader.close(); //以下为我切割的规则,一行切成2段,第一段设置为Map的Key,第二段设置为Map的Value for(String singleList : list) { if(singleList != "") { String[] temp = singleList.split( "J:: "); if(temp.length == 2) { tempMap.put(temp[0],temp[1]); } } } return tempMap; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash