作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个游戏和关卡编辑器,其中关卡存储在 .txt 文件中。打开时,应用程序会打开一个对话框来选择文件。除了无法从类路径外部读取文件之外,这工作得很好。使它能够从类路径外部读取文件的简单方法是什么?
为了获取我使用的文件:
public void getLevelPath() {
FileDialog dialog = new FileDialog((Frame) null, "Select File to Open");
dialog.setDirectory("C://");
dialog.setMode(FileDialog.LOAD);
dialog.setVisible(true);
String file = dialog.getFile();
System.out.println(file + " chosen.");
levelPath = file;
}
为了阅读,我使用:
InputStream is = this.getClass().getResourceAsStream(path);
BufferedReader br = new BufferedReader(new InputStreamReader(is));
感谢您的帮助!
最佳答案
File inputFile = new File(path);
InputStream is = new FileInputStream(inputFile );
BufferedReader br = new BufferedReader(new InputStreamReader(is));
关于java - 如何从java中的任何目录和对话框中读取文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60984536/
我是一名优秀的程序员,十分优秀!