- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助将 LocalDate
解析为 HashMap
token 。currentOrder.setOrderDate(currentTokens[12])
。 Order
对象中的 orderDate
被赋予了 LocalDate
类型。给出了错误:
incompatible types: String cannot be converted to LocalDate.
我需要一种方法来解析它。
private void loadOrder(LocalDate date) throws OrderPersistenceException {
String path = getFilePath(date);
File f = new File(path);
if (!f.exists()) {
return;
}
Scanner scanner = null;
try {
scanner = new Scanner(new BufferedReader(new FileReader(path)));
} catch (FileNotFoundException ex) {
throw new OrderPersistenceException("");
}
String currentLine;
String[] currentTokens;
while (scanner.hasNextLine()) {
currentLine = scanner.nextLine();
currentTokens = currentLine.split(DELIMITER);
HashMap<Long, Order> orders = new HashMap<>();
Order currentOrder = new Order(Long.parseLong(currentTokens[0]));
currentOrder.setCustomerName(currentTokens[1]);
currentOrder.setState(currentTokens[2]);
currentOrder.setTaxRate(new BigDecimal(currentTokens[3]));
currentOrder.setProductType(currentTokens[4]);
currentOrder.setArea(new BigDecimal(currentTokens[5]));
currentOrder.setCostPerSquareFoot(new BigDecimal(currentTokens[6]));
currentOrder.setLaborCostPerSquareFoot(new BigDecimal(currentTokens[7]));
currentOrder.setMeterialCost(new BigDecimal(currentTokens[8]));
currentOrder.setLaborCost(new BigDecimal(currentTokens[9]));
currentOrder.setTotalTax(new BigDecimal(currentTokens[10]));
currentOrder.setTotal(new BigDecimal(currentTokens[11]));
currentOrder.setOrderDate(currentTokens[12]);
orders.put(currentOrder.getOrderNumber(), currentOrder);
if (!orderMap.containsKey(currentOrder.getOrderDate())) {
orderMap.put(currentOrder.getOrderDate(), orders);
} else {
orderMap.get(currentOrder.getOrderDate()).put(currentOrder.getOrderNumber(), currentOrder);
}
}
scanner.close();
}
订单对象;
public class Order {
private Long orderNumber;
private String customerName;
private String state;
private BigDecimal taxRate;
private String productType;
private BigDecimal area;
private BigDecimal costPerSquareFoot;
private BigDecimal laborCostPerSquareFoot;
private BigDecimal meterialCost;
private BigDecimal laborCost;
private BigDecimal totalTax;
private BigDecimal total;
private LocalDate orderDate;
public Order(){
}
最佳答案
您正在从文件中提取字符串并尝试将其添加到 LocalDate。根据以下 java 文档,您应该使用 parse 方法将 String 日期解析为 LocalDate 对象。
String myDate = "2007-12-03";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
LocalDate date = LocalDate.parse(myDate, formatter);
关于java - 将 LocalDate 解析为 hashMap Token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46385330/
我正在尝试计算 2 个 localDates 之间的天数 我从这个答案中获得灵感:https://stackoverflow.com/a/325964对于这个问题Determine Whether T
我在使用 Joda daysBetween 函数时遇到问题。它一直在告诉我 The method daysBetween(ReadableInstant, ReadableInstant) in th
初始问题: 在Scala中,我想使用隐式 Ordering[T]#Ops比较两个LocalDate . 它只是使用像 > 这样的“运算符”而不是isAfter . 它应该只是一个导入:import s
如何删除 localDate 中的 T? 我需要删除“T”以匹配数据库中的数据。 这是我的代码 DateTimeFormatter formatter = DateTimeFormatter.ofPa
这个问题已经有答案了: How to format LocalDate object to MM/dd/yyyy and have format persist (4 个回答) How can you
这个问题在这里已经有了答案: What is the difference between public, protected, package-private and private in Jav
这个问题已经有答案了: SimpleDateFormat ignoring month when parsing (4 个回答) Java date format conversion - getti
这个问题已经有答案了: SimpleDateFormat ignoring month when parsing (4 个回答) Java date format conversion - getti
这个问题在这里已经有了答案: Localdate.format, format is not applied (2 个答案) How to format LocalDate to string? (
这个问题在这里已经有了答案: Importing two classes with same name. How to handle? (11 个回答) 7年前关闭。 我正在练习如何处理日期。但是当我
根据 Joda 中的文档: public LocalDate(int year, int monthOfYear, int dayOfMonth, Chronology chron
我正在尝试开发一个独立于 GWT 的通用模块,直到它实际在 GWT 应用程序中使用为止。问题是 GWT 不支持 joda 并且我的模块不使用 GWT。 我想要实现的目标(这行不通): 最
问题:Spring 似乎对 LocalDate 使用不同的反序列化方法,具体取决于它是出现在 @RequestBody 还是请求 @ReqestParam -这是正确的吗?如果是这样,是否有办法将它们
我想使用 Java8 DateTime API 中的 LocalDate 和 LocalDateTime,并且在值为 null 时无法坚持到 postgresql date 和 timestamp。
我正在做以下编程练习:Unlucky Days 。声明如下: Friday 13th or Black Friday is considered as unlucky day. Calculate h
这个问题已经有答案了: Java 8 LocalDateTime is parsing invalid datetime (5 个回答) How to sanity check a date in J
我有一个包含以下字段的员工类。 class Employee { final int id; final String name; final LocalDate update
这个问题已经有答案了: If statement gives condition is always true (4 个回答) 已关闭 3 年前。 我试图将两个日期与日期列表进行比较(列表元素已被删除
被这个问题困扰了一段时间,希望得到一些意见。我想验证用户输入的日期,以便我可以使用 LocalDate 对象执行计算。但是,当输入有效日期时,返回的日期是前一个无效日期,这会引发异常并崩溃。我错过了什
这个问题已经有答案了: How can I parse/format dates with LocalDateTime? (Java 8) (11 个回答) 已关闭 3 年前。 我有一个日期时间信息字
我是一名优秀的程序员,十分优秀!