From c63c1c4779e4fbeeeb212c3e7017d2bba75a8501 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Wed, 3 Jan 2024 15:39:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=86=E5=88=ABcsv=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/io/dataease/datasource/provider/ExcelUtils.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java b/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java index 86a8482383..3bde07e694 100644 --- a/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java +++ b/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java @@ -267,9 +267,6 @@ public class ExcelUtils { int num = 1; String line; while ((line = reader.readLine()) != null) { - if (isPreview && num > 1000) { - break; - } String str; line += ","; Pattern pCells = Pattern.compile("(\"[^\"]*(\"{2})*[^\"]*\")*[^,]*,");