selenium读取txt文件的几种方式
1.用java读取txt文件
public static String readFJ(String path) { path = "D:/workspace/hetong.txt"; File file = new File(path); StringBuffer txt= new StringBuffer(); if(file.isFile() && file.exists()) { //InputStreamReader in = null; try { InputStreamReader in = new InputStreamReader(new FileInputStream(file),"GBK"); BufferedReader bfd = new BufferedReader(in); String s; while((s=bfd.readLine())!=null) { txt.append(s); } in.close(); bfd.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } return txt.toString(); }
2.用selenium读取txt文件
public static String readFS(String path) { File file = new File(path); String s = null; try { s = FileHandler.readAsString(file); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return s; }
******************************************************************************************************************************************
作者:乔叶叶
博客地址:http://www.cnblogs.com/qiaoyeye/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
******************************************************************************************************************************************
作者:乔叶叶
博客地址:http://www.cnblogs.com/qiaoyeye/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
******************************************************************************************************************************************