2、记事本页面后写好代码之后,点击左上角的文件选项按钮。
3、写好之后点击文件下的保存选项按钮
4、这时候就要文件名的后缀改成java
5、改好之后点击保存,之后就可以变成JAVA源文件了。
直接改后缀名,把 .txt后缀改为 .java 。
调用时,类名.readFile("d:/1.txt")即可:
123456789101112131415161718192021222324252627282930313233343536373839404142public static String[] readFile(String sourceFileName) throws IOException { String[] array = null Set<String>result = new HashSet<String>() String lineText BufferedReader reader = null try { File sourceFile = new File(sourceFileName) reader = new BufferedReader(new FileReader(sourceFile)) while ((lineText = reader.readLine()) != null) { //验证是否合法 if(!"".equals(lineText.trim())) { result.add(lineText.trim()) } } } catch (FileNotFoundException e) { //这里由于文件基本不太可能找不到,将此类异常忽略 throw new RuntimeException(e) } finally { if (reader != null) { try { reader.close() } catch (IOException e) { throw new RuntimeException(e) } } } return result.toArray()}要先看看文本是不是txt的,是了才可以改。我的电脑->工具->文件夹选项->查看->把隐藏文件扩展名勾掉然后重命名,把,txt改为,java。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)