如果有任何人有使用Yaml(.yml扩展文件)的经验,我可以使用一些帮助。我正在尝试编写一个程序,从我在桌面上创建的文件夹中读取.yml文件。
import java.io.IOException;
import java.io.InputStream;
import org.yaml.snakeyaml.Yaml
public class readYaml {
public static void main(String[] args) throws IOException {
Yaml yaml = new Yaml();
try (InputStream in = readYaml.class.getResourceAsStream("/Collections.yml")) {
Question question = yaml.loadAs(in, Question.class);
System.out.println(question);
}
}
}
修改的 我在我的项目文件中创建了一个资源文件夹,以响应第8行的错误,指出“这是来自我从第8行的错误中得到的错误,说明”导入org.yaml.snakeyaml.Yaml不能解决“”,但现在我收到此错误。我认为最好在屏幕截图中解释。 enter image description here
这发生在我的项目文件夹中 enter image description here
我希望这让事情更清楚。