From 807663444aa09a2bb146f570d447ba562a5e9e38 Mon Sep 17 00:00:00 2001 From: Kane Wang Date: Sun, 27 Mar 2022 11:17:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=B0=8F=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 代码/jsp/.idea/.gitignore | 0 代码/jsp/.idea/libraries/lib.xml | 28 +++++++++++++++++++ 代码/jsp/.idea/libraries/lib1.xml | 17 +++++++++++ 代码/jsp/.idea/misc.xml | 6 ++++ 代码/jsp/.idea/modules.xml | 8 ++++++ 代码/jsp/.idea/runConfigurations.xml | 10 +++++++ 代码/jsp/.idea/vcs.xml | 6 ++++ 代码/jsp/jsp.iml | 13 +++++++++ .../.idea/dataSources.local.xml | 2 +- .../.idea/runConfigurations.xml | 10 +++++++ .../cpic/telsale/DataImport/DataImport.java | 6 ++++ 11 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 代码/jsp/.idea/.gitignore create mode 100644 代码/jsp/.idea/libraries/lib.xml create mode 100644 代码/jsp/.idea/libraries/lib1.xml create mode 100644 代码/jsp/.idea/misc.xml create mode 100644 代码/jsp/.idea/modules.xml create mode 100644 代码/jsp/.idea/runConfigurations.xml create mode 100644 代码/jsp/.idea/vcs.xml create mode 100644 代码/jsp/jsp.iml create mode 100644 代码/jsp/telsale_import/.idea/runConfigurations.xml diff --git a/代码/jsp/.idea/.gitignore b/代码/jsp/.idea/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/代码/jsp/.idea/libraries/lib.xml b/代码/jsp/.idea/libraries/lib.xml new file mode 100644 index 0000000..12bee73 --- /dev/null +++ b/代码/jsp/.idea/libraries/lib.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/代码/jsp/.idea/libraries/lib1.xml b/代码/jsp/.idea/libraries/lib1.xml new file mode 100644 index 0000000..0d227b7 --- /dev/null +++ b/代码/jsp/.idea/libraries/lib1.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/代码/jsp/.idea/misc.xml b/代码/jsp/.idea/misc.xml new file mode 100644 index 0000000..a818314 --- /dev/null +++ b/代码/jsp/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/代码/jsp/.idea/modules.xml b/代码/jsp/.idea/modules.xml new file mode 100644 index 0000000..75584fa --- /dev/null +++ b/代码/jsp/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/代码/jsp/.idea/runConfigurations.xml b/代码/jsp/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/代码/jsp/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/代码/jsp/.idea/vcs.xml b/代码/jsp/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/代码/jsp/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/代码/jsp/jsp.iml b/代码/jsp/jsp.iml new file mode 100644 index 0000000..5595204 --- /dev/null +++ b/代码/jsp/jsp.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/代码/jsp/telsale_import/.idea/dataSources.local.xml b/代码/jsp/telsale_import/.idea/dataSources.local.xml index 461437c..53f6547 100644 --- a/代码/jsp/telsale_import/.idea/dataSources.local.xml +++ b/代码/jsp/telsale_import/.idea/dataSources.local.xml @@ -1,6 +1,6 @@ - + $# diff --git a/代码/jsp/telsale_import/.idea/runConfigurations.xml b/代码/jsp/telsale_import/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/代码/jsp/telsale_import/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/代码/jsp/telsale_import/src/com/cpic/telsale/DataImport/DataImport.java b/代码/jsp/telsale_import/src/com/cpic/telsale/DataImport/DataImport.java index fdf3f0d..a97eef6 100644 --- a/代码/jsp/telsale_import/src/com/cpic/telsale/DataImport/DataImport.java +++ b/代码/jsp/telsale_import/src/com/cpic/telsale/DataImport/DataImport.java @@ -116,6 +116,12 @@ public class DataImport return policyList; } + /** + * @Description: 读取单元格的数据,以字符串形式返回值。 + * @Param: poi的单元格对象 + * @return: java.lang.String 返回字符串形式的值 + * @Author: 王炜 + * @Date: 2021/6/27 **/ private static String getStringValueFromHSSFCell( HSSFCell cell ) { String value = null;