Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个弹簧启动应用程序。我有一个输入excel文件的地方。我已将该文件转换为 .csv 格式。现在我通过索引值访问列,但我想使用标题访问它们。使用 application.properties 怎么可能?
提前致谢。
您应该创建一个以索引为值的标头名称枚举。在您的代码中使用此枚举而不是索引。
public enum headers{ col1(0), col2(1); private int index; public headers(int i){ this.index=i; } } ///Use like: getColumn(headers.col1);