Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
import org.apache.fesod.sheet.converters.string.StringNumberConverter;
import org.apache.fesod.sheet.converters.string.StringStringConverter;
import org.apache.fesod.sheet.converters.url.UrlImageConverter;
import org.apache.fesod.sheet.converters.zoneddatetime.ZonedDateTimeDateConverter;
import org.apache.fesod.sheet.converters.zoneddatetime.ZonedDateTimeNumberConverter;
import org.apache.fesod.sheet.converters.zoneddatetime.ZonedDateTimeStringConverter;

/**
* Load default handler
Expand Down Expand Up @@ -117,6 +120,9 @@ private static void initAllConverter() {
putAllConverter(new LocalDateTimeNumberConverter());
putAllConverter(new LocalDateTimeStringConverter());

putAllConverter(new ZonedDateTimeNumberConverter());
putAllConverter(new ZonedDateTimeStringConverter());

putAllConverter(new DoubleBooleanConverter());
putAllConverter(new DoubleNumberConverter());
putAllConverter(new DoubleStringConverter());
Expand Down Expand Up @@ -153,6 +159,7 @@ private static void initDefaultWriteConverter() {
putWriteConverter(new DateDateConverter());
putWriteConverter(new LocalDateTimeDateConverter());
putWriteConverter(new LocalDateDateConverter());
putWriteConverter(new ZonedDateTimeDateConverter());
putWriteConverter(new DoubleNumberConverter());
putWriteConverter(new FloatNumberConverter());
putWriteConverter(new IntegerNumberConverter());
Expand All @@ -173,6 +180,7 @@ private static void initDefaultWriteConverter() {
putWriteStringConverter(new DateStringConverter());
putWriteStringConverter(new LocalDateStringConverter());
putWriteStringConverter(new LocalDateTimeStringConverter());
putWriteStringConverter(new ZonedDateTimeStringConverter());
putWriteStringConverter(new DoubleStringConverter());
putWriteStringConverter(new FloatStringConverter());
putWriteStringConverter(new IntegerStringConverter());
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

/*
* This file is part of the Apache Fesod (Incubating) project, which was derived from Alibaba EasyExcel.
*
* Copyright (C) 2018-2024 Alibaba Group Holding Ltd.
*/

package org.apache.fesod.sheet.converters.zoneddatetime;

import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import org.apache.fesod.sheet.converters.Converter;
import org.apache.fesod.sheet.metadata.GlobalConfiguration;
import org.apache.fesod.sheet.metadata.data.WriteCellData;
import org.apache.fesod.sheet.metadata.property.ExcelContentProperty;
import org.apache.fesod.sheet.util.DateUtils;
import org.apache.fesod.sheet.util.WorkBookUtil;

/** ZonedDateTime and date converter. */
public class ZonedDateTimeDateConverter implements Converter<ZonedDateTime> {
@Override
public Class<?> supportJavaTypeKey() {
return ZonedDateTime.class;
}

@Override
public WriteCellData<?> convertToExcelData(
ZonedDateTime value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration)
throws Exception {
LocalDateTime localDateTime = value.toLocalDateTime();
WriteCellData<?> cellData = new WriteCellData<>(localDateTime);
String format = null;
if (contentProperty != null && contentProperty.getDateTimeFormatProperty() != null) {
format = contentProperty.getDateTimeFormatProperty().getFormat();
}
WorkBookUtil.fillDataFormat(cellData, format, DateUtils.defaultDateFormat);
return cellData;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

/*
* This file is part of the Apache Fesod (Incubating) project, which was derived from Alibaba EasyExcel.
*
* Copyright (C) 2018-2024 Alibaba Group Holding Ltd.
*/

package org.apache.fesod.sheet.converters.zoneddatetime;

import java.math.BigDecimal;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import org.apache.fesod.sheet.converters.Converter;
import org.apache.fesod.sheet.enums.CellDataTypeEnum;
import org.apache.fesod.sheet.metadata.GlobalConfiguration;
import org.apache.fesod.sheet.metadata.data.ReadCellData;
import org.apache.fesod.sheet.metadata.data.WriteCellData;
import org.apache.fesod.sheet.metadata.property.ExcelContentProperty;
import org.apache.fesod.sheet.util.DateUtils;
import org.apache.poi.ss.usermodel.DateUtil;

/** ZonedDateTime and number converter. */
public class ZonedDateTimeNumberConverter implements Converter<ZonedDateTime> {
@Override
public Class<?> supportJavaTypeKey() {
return ZonedDateTime.class;
}

@Override
public CellDataTypeEnum supportExcelTypeKey() {
return CellDataTypeEnum.NUMBER;
}

@Override
public ZonedDateTime convertToJavaData(
ReadCellData<?> cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
boolean use1904windowing = globalConfiguration.getUse1904windowing();
if (contentProperty != null && contentProperty.getDateTimeFormatProperty() != null) {
use1904windowing = contentProperty.getDateTimeFormatProperty().getUse1904windowing();
}
return DateUtils.getLocalDateTime(cellData.getNumberValue().doubleValue(), use1904windowing)
.atZone(ZoneId.systemDefault());
}

@Override
public WriteCellData<?> convertToExcelData(
ZonedDateTime value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
boolean use1904windowing = globalConfiguration.getUse1904windowing();
if (contentProperty != null && contentProperty.getDateTimeFormatProperty() != null) {
use1904windowing = contentProperty.getDateTimeFormatProperty().getUse1904windowing();
}
return new WriteCellData<>(
BigDecimal.valueOf(DateUtil.getExcelDate(value.toLocalDateTime(), use1904windowing)));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

/*
* This file is part of the Apache Fesod (Incubating) project, which was derived from Alibaba EasyExcel.
*
* Copyright (C) 2018-2024 Alibaba Group Holding Ltd.
*/

package org.apache.fesod.sheet.converters.zoneddatetime;

import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import java.util.Locale;
import org.apache.fesod.common.util.StringUtils;
import org.apache.fesod.sheet.converters.Converter;
import org.apache.fesod.sheet.enums.CellDataTypeEnum;
import org.apache.fesod.sheet.metadata.GlobalConfiguration;
import org.apache.fesod.sheet.metadata.data.ReadCellData;
import org.apache.fesod.sheet.metadata.data.WriteCellData;
import org.apache.fesod.sheet.metadata.property.ExcelContentProperty;

/** ZonedDateTime and string converter. */
public class ZonedDateTimeStringConverter implements Converter<ZonedDateTime> {
@Override
public Class<?> supportJavaTypeKey() {
return ZonedDateTime.class;
}

@Override
public CellDataTypeEnum supportExcelTypeKey() {
return CellDataTypeEnum.STRING;
}

@Override
public ZonedDateTime convertToJavaData(
ReadCellData<?> cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
DateTimeFormatter formatter = formatter(contentProperty, globalConfiguration.getLocale());
try {
return ZonedDateTime.parse(cellData.getStringValue(), formatter);
} catch (DateTimeParseException e) {
return LocalDateTime.parse(cellData.getStringValue(), formatter).atZone(ZoneId.systemDefault());
}
}

@Override
public WriteCellData<?> convertToExcelData(
ZonedDateTime value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
return new WriteCellData<>(value.format(formatter(contentProperty, globalConfiguration.getLocale())));
}

private DateTimeFormatter formatter(ExcelContentProperty contentProperty, Locale locale) {
if (contentProperty == null
|| contentProperty.getDateTimeFormatProperty() == null
|| StringUtils.isEmpty(
contentProperty.getDateTimeFormatProperty().getFormat())) {
return DateTimeFormatter.ISO_ZONED_DATE_TIME;
}
return DateTimeFormatter.ofPattern(
contentProperty.getDateTimeFormatProperty().getFormat(), locale);
}
}
Loading
Loading