Java读取txt文件.excel文件的方法 1.读取txt文件 public static String getFileContent(String filePath,String charset){//filePath为文件路径,charset为字符编码.通常使用UTF-8 File file = new File(filePath); BufferedReader reader = null; String tempString = null; int line =1; StringBuf…