mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 05:22:13 +08:00
fix: csv 预览1000条数据
This commit is contained in:
@@ -2427,7 +2427,7 @@ public class DataSetTableService {
|
||||
int num = 1;
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
if (num > 100) {
|
||||
if (num > 1000) {
|
||||
break;
|
||||
}
|
||||
data.add(Arrays.asList(line.split(",")));
|
||||
|
||||
Reference in New Issue
Block a user