From a1363a34842e80f3a747eb1643af5eb62806d14b Mon Sep 17 00:00:00 2001
From: chenlw <874313221@qq.com>
Date: Tue, 25 Oct 2016 18:40:48 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9C=80=E6=96=B0=E4=BF=AE=E6=94=B9+cfg?=
=?UTF-8?q?=E6=96=87=E4=BB=B6=E4=BA=A7=E7=94=9F+=E5=9C=B0=E5=8C=BA?=
=?UTF-8?q?=E4=B8=8B=E6=89=80=E6=9C=89=E7=B3=BB=E7=BB=9F=E7=9A=84xml?=
=?UTF-8?q?=E4=BA=A7=E7=94=9F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../mapper/standard_data_details-mapper.xml | 8 +-
.../platform/controller/ExcelController.java | 23 +-
src/com/platform/dao/ISystemCodeDao.java | 6 -
src/com/platform/dao/PreDataInfoDao.java | 5 +-
.../entities/DefaultDataDescription.java | 478 ++++++++++++++++++
src/com/platform/entities/MyFileEntity.java | 53 ++
src/com/platform/entities/PreDataInfo.java | 30 ++
.../platform/entities/PreDataInfoFull.java | 37 --
.../platform/service/IScriptMakeService.java | 17 +
.../service/impl/PreDataInfoServiceImpl.java | 43 +-
.../service/impl/ScriptMakeService.java | 116 +++++
src/com/platform/utils/BeanCopy.java | 14 +-
src/com/platform/utils/Configs.java | 4 +
src/com/platform/utils/ConfigsLoader.java | 4 +
src/com/platform/utils/Constant.java | 3 +
src/com/platform/utils/FileOperateHelper.java | 33 +-
.../platform/utils/XmlOperationByDom4j.java | 190 +++++++
17 files changed, 968 insertions(+), 96 deletions(-)
create mode 100644 src/com/platform/entities/DefaultDataDescription.java
create mode 100644 src/com/platform/entities/MyFileEntity.java
delete mode 100644 src/com/platform/entities/PreDataInfoFull.java
create mode 100644 src/com/platform/service/IScriptMakeService.java
create mode 100644 src/com/platform/service/impl/ScriptMakeService.java
create mode 100644 src/com/platform/utils/XmlOperationByDom4j.java
diff --git a/src/com/dao/mapper/standard_data_details-mapper.xml b/src/com/dao/mapper/standard_data_details-mapper.xml
index a83a7726..3262b75f 100644
--- a/src/com/dao/mapper/standard_data_details-mapper.xml
+++ b/src/com/dao/mapper/standard_data_details-mapper.xml
@@ -12,10 +12,8 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
jdbcType="VARCHAR" />
-
- id,area_code,city_name,district_name,system_name,area_level,data_version,begin_in_use,function_details,
+ id,area_code,city_name,district_name,system_name,sys_code,area_level,data_version,begin_in_use,function_details,
department_manager,manager_contacts,sys_developer_full_name,data_base_type,data_base_version,
is_budget_exec,is_budget_quota,is_collection,is_department_budget,total_budget_account,
final_account_manage,report_form_manage,non_tax_revenue_manage,wage_system,
@@ -173,7 +171,7 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
-
+
UPDATE
default_data_description
diff --git a/src/com/platform/controller/ExcelController.java b/src/com/platform/controller/ExcelController.java
index 6816bf48..3985da40 100644
--- a/src/com/platform/controller/ExcelController.java
+++ b/src/com/platform/controller/ExcelController.java
@@ -47,6 +47,7 @@ import com.platform.entities.PreDataInfo;
import com.platform.entities.ResumableInfo;
import com.platform.entities.ResumableInfoStorage;
import com.platform.service.IPreDataInfoService;
+import com.platform.service.IScriptMakeService;
import com.platform.utils.Configs;
import com.platform.utils.HttpUtils;
import com.platform.utils.UtilsHelper;
@@ -60,6 +61,9 @@ public class ExcelController extends BaseController{
@Resource(name = "preDataInfoService")
private IPreDataInfoService preDataInfoService;
+ @Resource(name = "scriptMakeService")
+ private IScriptMakeService scriptMakeService;
+
// 文件上传处理函数
@RequestMapping(value = "/file/upload", method = RequestMethod.POST)
public void upload(HttpServletRequest request, HttpServletResponse response)
@@ -235,13 +239,13 @@ public class ExcelController extends BaseController{
}
log.info(jsonlist.size());
List listPath = new ArrayList();
- // 末尾 含有 /
+ // 末尾 含有 /(linux)
Pattern pattern2 = Pattern.compile("\\/$");
Matcher matcher2 = pattern2.matcher(Configs.FILE_UPLOAD_PATH);
// 加上 最后 的 /
String dirPath = Configs.FILE_UPLOAD_PATH;
if (!matcher2.find()) {
- dirPath = dirPath+"/";
+ dirPath = dirPath + File.separator;
}
for (String p : jsonlist) {
listPath.add(dirPath + p);
@@ -264,12 +268,8 @@ public class ExcelController extends BaseController{
//读取完后删除源文件(不管是否成功导入)
File tmpf = new File(filePath + ".temp");
File f = new File(filePath);
- if (tmpf.exists()) {
- tmpf.delete();
- }
- if (f.exists()) {
- f.delete();
- }
+ tmpf.delete();
+ f.delete();
}
}
return modelMap;
@@ -313,4 +313,11 @@ public class ExcelController extends BaseController{
}
}
}
+
+ @RequestMapping(value = "/exportFile")
+ public void exportFile(HttpServletRequest request, HttpServletResponse response) throws Exception {
+ scriptMakeService.makeCfg();
+ scriptMakeService.makeXml();
+ response.setStatus(200);
+ }
}
diff --git a/src/com/platform/dao/ISystemCodeDao.java b/src/com/platform/dao/ISystemCodeDao.java
index b64d6e71..48424815 100644
--- a/src/com/platform/dao/ISystemCodeDao.java
+++ b/src/com/platform/dao/ISystemCodeDao.java
@@ -2,14 +2,8 @@ package com.platform.dao;
import java.util.List;
-import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
-import com.platform.entities.DataInfoEntity;
-import com.platform.entities.DataInfoEntityMoveTmp;
-import com.platform.entities.PagerOptions;
-import com.platform.entities.PreDataInfoFull;
-import com.platform.entities.RegionalismEntity;
import com.platform.entities.SystemEntity;
/**
diff --git a/src/com/platform/dao/PreDataInfoDao.java b/src/com/platform/dao/PreDataInfoDao.java
index daf73e3e..e1b03d2b 100644
--- a/src/com/platform/dao/PreDataInfoDao.java
+++ b/src/com/platform/dao/PreDataInfoDao.java
@@ -10,7 +10,6 @@ import com.platform.entities.DataInfoEntity;
import com.platform.entities.DataInfoEntityMoveTmp;
import com.platform.entities.PagerOptions;
import com.platform.entities.PreDataInfo;
-import com.platform.entities.PreDataInfoFull;
@Repository(value = "preDataInfoDao")
public interface PreDataInfoDao {
@@ -25,9 +24,9 @@ public interface PreDataInfoDao {
List findAll()throws Exception;
- void insertBatch(List list) throws Exception;
+ void insertBatch(List list) throws Exception;
- int update(PreDataInfoFull data) throws Exception;
+ int update(PreDataInfo data) throws Exception;
/** 查找 存在的 系统(根据 地区编码 和 系统编码)
* @param list
diff --git a/src/com/platform/entities/DefaultDataDescription.java b/src/com/platform/entities/DefaultDataDescription.java
new file mode 100644
index 00000000..86cde956
--- /dev/null
+++ b/src/com/platform/entities/DefaultDataDescription.java
@@ -0,0 +1,478 @@
+package com.platform.entities;
+
+public class DefaultDataDescription {
+
+ private String localNodeName = "Data";
+
+ private String province;
+
+ private String city;
+
+ private String county;
+
+ private String code;
+
+ private String sys_name;
+
+ private int sys_name_code;
+
+ private String contact;
+
+ private String phone;
+
+ private String district_level;
+
+ private String using_time;
+
+ private String sys_version;
+
+ private String sys_description;
+
+ private String sys_develope;
+
+ private String database;
+
+ private String database_version;
+
+ private String business_area_department_budget;
+
+ private String business_area_budget_norm;
+
+ private String business_area_budget_execution;
+
+ private String business_area_overall_budget_account;
+
+ private String business_area_final_settlement;
+
+ private String business_area_statement;
+
+ private String business_area_nontax_income;
+
+ private String business_area_wage_issue;
+
+ private String business_area_economic_projection;
+
+ private String business_area_government_debet;
+
+ /**
+ * @return the localNodeName
+ */
+ public String getLocalNodeName() {
+ return localNodeName;
+ }
+
+ /**
+ * @param localNodeName the localNodeName to set
+ */
+ public void setLocalNodeName(String localNodeName) {
+ this.localNodeName = localNodeName;
+ }
+
+ /**
+ * @return the province
+ */
+ public String getProvince() {
+ return province;
+ }
+
+ /**
+ * @param province the province to set
+ */
+ public void setProvince(String province) {
+ this.province = province;
+ }
+
+ /**
+ * @return the city
+ */
+ public String getCity() {
+ return city;
+ }
+
+ /**
+ * @param city the city to set
+ */
+ public void setCity(String city) {
+ this.city = city;
+ }
+
+ /**
+ * @return the county
+ */
+ public String getCounty() {
+ return county;
+ }
+
+ /**
+ * @param county the county to set
+ */
+ public void setCounty(String county) {
+ this.county = county;
+ }
+
+ /**
+ * @return the code
+ */
+ public String getCode() {
+ return code;
+ }
+
+ /**
+ * @param code the code to set
+ */
+ public void setCode(String code) {
+ this.code = code;
+ }
+
+ /**
+ * @return the sys_name
+ */
+ public String getSys_name() {
+ return sys_name;
+ }
+
+ /**
+ * @param sys_name the sys_name to set
+ */
+ public void setSys_name(String sys_name) {
+ this.sys_name = sys_name;
+ }
+
+ /**
+ * @return the sys_name_code
+ */
+ public int getSys_name_code() {
+ return sys_name_code;
+ }
+
+ /**
+ * @param sys_name_code the sys_name_code to set
+ */
+ public void setSys_name_code(int sys_name_code) {
+ this.sys_name_code = sys_name_code;
+ }
+
+ /**
+ * @return the contact
+ */
+ public String getContact() {
+ return contact;
+ }
+
+ /**
+ * @param contact the contact to set
+ */
+ public void setContact(String contact) {
+ this.contact = contact;
+ }
+
+ /**
+ * @return the phone
+ */
+ public String getPhone() {
+ return phone;
+ }
+
+ /**
+ * @param phone the phone to set
+ */
+ public void setPhone(String phone) {
+ this.phone = phone;
+ }
+
+ /**
+ * @return the district_level
+ */
+ public String getDistrict_level() {
+ return district_level;
+ }
+
+ /**
+ * @param district_level the district_level to set
+ */
+ public void setDistrict_level(String district_level) {
+ this.district_level = district_level;
+ }
+
+ /**
+ * @return the using_time
+ */
+ public String getUsing_time() {
+ return using_time;
+ }
+
+ /**
+ * @param using_time the using_time to set
+ */
+ public void setUsing_time(String using_time) {
+ this.using_time = using_time;
+ }
+
+ /**
+ * @return the sys_version
+ */
+ public String getSys_version() {
+ return sys_version;
+ }
+
+ /**
+ * @param sys_version the sys_version to set
+ */
+ public void setSys_version(String sys_version) {
+ this.sys_version = sys_version;
+ }
+
+ /**
+ * @return the sys_description
+ */
+ public String getSys_description() {
+ return sys_description;
+ }
+
+ /**
+ * @param sys_description the sys_description to set
+ */
+ public void setSys_description(String sys_description) {
+ this.sys_description = sys_description;
+ }
+
+ /**
+ * @return the sys_develope
+ */
+ public String getSys_develope() {
+ return sys_develope;
+ }
+
+ /**
+ * @param sys_develope the sys_develope to set
+ */
+ public void setSys_develope(String sys_develope) {
+ this.sys_develope = sys_develope;
+ }
+
+ /**
+ * @return the database
+ */
+ public String getDatabase() {
+ return database;
+ }
+
+ /**
+ * @param database the database to set
+ */
+ public void setDatabase(String database) {
+ this.database = database;
+ }
+
+ /**
+ * @return the database_version
+ */
+ public String getDatabase_version() {
+ return database_version;
+ }
+
+ /**
+ * @param database_version the database_version to set
+ */
+ public void setDatabase_version(String database_version) {
+ this.database_version = database_version;
+ }
+
+ /**
+ * @return the business_area_department_budget
+ */
+ public String getBusiness_area_department_budget() {
+ return business_area_department_budget;
+ }
+
+ /**
+ * @param business_area_department_budget the business_area_department_budget to set
+ */
+ public void setBusiness_area_department_budget(
+ String business_area_department_budget) {
+ this.business_area_department_budget = business_area_department_budget;
+ }
+
+ /**
+ * @return the business_area_budget_norm
+ */
+ public String getBusiness_area_budget_norm() {
+ return business_area_budget_norm;
+ }
+
+ /**
+ * @param business_area_budget_norm the business_area_budget_norm to set
+ */
+ public void setBusiness_area_budget_norm(String business_area_budget_norm) {
+ this.business_area_budget_norm = business_area_budget_norm;
+ }
+
+ /**
+ * @return the business_area_budget_execution
+ */
+ public String getBusiness_area_budget_execution() {
+ return business_area_budget_execution;
+ }
+
+ /**
+ * @param business_area_budget_execution the business_area_budget_execution to set
+ */
+ public void setBusiness_area_budget_execution(
+ String business_area_budget_execution) {
+ this.business_area_budget_execution = business_area_budget_execution;
+ }
+
+ /**
+ * @return the business_area_overall_budget_account
+ */
+ public String getBusiness_area_overall_budget_account() {
+ return business_area_overall_budget_account;
+ }
+
+ /**
+ * @param business_area_overall_budget_account the business_area_overall_budget_account to set
+ */
+ public void setBusiness_area_overall_budget_account(
+ String business_area_overall_budget_account) {
+ this.business_area_overall_budget_account = business_area_overall_budget_account;
+ }
+
+ /**
+ * @return the business_area_final_settlement
+ */
+ public String getBusiness_area_final_settlement() {
+ return business_area_final_settlement;
+ }
+
+ /**
+ * @param business_area_final_settlement the business_area_final_settlement to set
+ */
+ public void setBusiness_area_final_settlement(
+ String business_area_final_settlement) {
+ this.business_area_final_settlement = business_area_final_settlement;
+ }
+
+ /**
+ * @return the business_area_statement
+ */
+ public String getBusiness_area_statement() {
+ return business_area_statement;
+ }
+
+ /**
+ * @param business_area_statement the business_area_statement to set
+ */
+ public void setBusiness_area_statement(String business_area_statement) {
+ this.business_area_statement = business_area_statement;
+ }
+
+ /**
+ * @return the business_area_nontax_income
+ */
+ public String getBusiness_area_nontax_income() {
+ return business_area_nontax_income;
+ }
+
+ /**
+ * @param business_area_nontax_income the business_area_nontax_income to set
+ */
+ public void setBusiness_area_nontax_income(String business_area_nontax_income) {
+ this.business_area_nontax_income = business_area_nontax_income;
+ }
+
+ /**
+ * @return the business_area_wage_issue
+ */
+ public String getBusiness_area_wage_issue() {
+ return business_area_wage_issue;
+ }
+
+ /**
+ * @param business_area_wage_issue the business_area_wage_issue to set
+ */
+ public void setBusiness_area_wage_issue(String business_area_wage_issue) {
+ this.business_area_wage_issue = business_area_wage_issue;
+ }
+
+ /**
+ * @return the business_area_economic_projection
+ */
+ public String getBusiness_area_economic_projection() {
+ return business_area_economic_projection;
+ }
+
+ /**
+ * @param business_area_economic_projection the business_area_economic_projection to set
+ */
+ public void setBusiness_area_economic_projection(
+ String business_area_economic_projection) {
+ this.business_area_economic_projection = business_area_economic_projection;
+ }
+
+ /**
+ * @return the business_area_government_debet
+ */
+ public String getBusiness_area_government_debet() {
+ return business_area_government_debet;
+ }
+
+ /**
+ * @param business_area_government_debet the business_area_government_debet to set
+ */
+ public void setBusiness_area_government_debet(
+ String business_area_government_debet) {
+ this.business_area_government_debet = business_area_government_debet;
+ }
+
+ public void setvalue(PreDataInfo pre){
+ province = "江苏省";
+
+ city = pre.getCityName();
+
+ county = pre.getDistrictName();
+
+ code = pre.getAreaCode();
+
+ sys_name = pre.getSysName();
+
+ sys_name_code = pre.getSysCode();
+
+ contact = pre.getDepartmentManager();
+
+ phone = pre.getManagerContacts();
+
+ district_level = pre.getAreaLevel();
+
+ using_time = pre.getBeginUseTime();
+
+ sys_version = pre.getDataVersion();
+
+ sys_description = pre.getFunctionDetails();
+
+ sys_develope = pre.getDeveloperFullName();
+
+ database = pre.getDataBaseType();
+
+ database_version = pre.getDataBaseVersion();
+
+ business_area_department_budget = pre.getDepartmentBudgetManage();
+
+ business_area_budget_norm = pre.getBudgetQuotaManage();
+
+ business_area_budget_execution = pre.getBudgetExecManage();
+
+ business_area_overall_budget_account = pre.getTotalBudgetAccount();
+
+ business_area_final_settlement = pre.getFinalAccountManage();
+
+ business_area_statement = pre.getReportFormManage();
+
+ business_area_nontax_income = pre.getNonTaxManage();
+
+ business_area_wage_issue = pre.getWageSystem();
+
+ business_area_economic_projection = pre.getAnalysisOfFinancialEconomicProsperity();
+
+ business_area_government_debet = pre.getGovernmentDebtManage();
+ }
+}
diff --git a/src/com/platform/entities/MyFileEntity.java b/src/com/platform/entities/MyFileEntity.java
new file mode 100644
index 00000000..0d68735b
--- /dev/null
+++ b/src/com/platform/entities/MyFileEntity.java
@@ -0,0 +1,53 @@
+package com.platform.entities;
+
+public class MyFileEntity {
+
+ private String fileName;
+
+ private String lastTime;
+
+ private String filePath;
+
+ /**
+ * @return the fileName
+ */
+ public String getFileName() {
+ return fileName;
+ }
+
+ /**
+ * @param fileName the fileName to set
+ */
+ public void setFileName(String fileName) {
+ this.fileName = fileName;
+ }
+
+ /**
+ * @return the lastTime
+ */
+ public String getLastTime() {
+ return lastTime;
+ }
+
+ /**
+ * @param lastTime the lastTime to set
+ */
+ public void setLastTime(String lastTime) {
+ this.lastTime = lastTime;
+ }
+
+ /**
+ * @return the filePath
+ */
+ public String getFilePath() {
+ return filePath;
+ }
+
+ /**
+ * @param filePath the filePath to set
+ */
+ public void setFilePath(String filePath) {
+ this.filePath = filePath;
+ }
+
+}
diff --git a/src/com/platform/entities/PreDataInfo.java b/src/com/platform/entities/PreDataInfo.java
index 5dd778e9..6badbb42 100644
--- a/src/com/platform/entities/PreDataInfo.java
+++ b/src/com/platform/entities/PreDataInfo.java
@@ -7,6 +7,10 @@ public class PreDataInfo {
private int id;
+ private int sysCode;
+
+ private String updateTime;
+
/** 是否更新 */
private String isupdate = "-";
@@ -98,7 +102,33 @@ public class PreDataInfo {
public void setId(int id) {
this.id = id;
}
+ /**
+ * @return the sysCode
+ */
+ public int getSysCode() {
+ return sysCode;
+ }
+
+ /**
+ * @param sysCode the sysCode to set
+ */
+ public void setSysCode(int sysCode) {
+ this.sysCode = sysCode;
+ }
+
+ /**
+ * @return the updateTime
+ */
+ public String getUpdateTime() {
+ return updateTime;
+ }
+ /**
+ * @param updateTime the updateTime to set
+ */
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime;
+ }
/**
* @return the isupdate
*/
diff --git a/src/com/platform/entities/PreDataInfoFull.java b/src/com/platform/entities/PreDataInfoFull.java
deleted file mode 100644
index eb4246cc..00000000
--- a/src/com/platform/entities/PreDataInfoFull.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.platform.entities;
-
-public class PreDataInfoFull extends PreDataInfo {
-
- private String sysCode;
-
- private String updateTime;
-
- /**
- * @return the sysCode
- */
- public String getSysCode() {
- return sysCode;
- }
-
- /**
- * @param sysCode the sysCode to set
- */
- public void setSysCode(String sysCode) {
- this.sysCode = sysCode;
- }
-
- /**
- * @return the updateTime
- */
- public String getUpdateTime() {
- return updateTime;
- }
-
- /**
- * @param updateTime the updateTime to set
- */
- public void setUpdateTime(String updateTime) {
- this.updateTime = updateTime;
- }
-
-}
diff --git a/src/com/platform/service/IScriptMakeService.java b/src/com/platform/service/IScriptMakeService.java
new file mode 100644
index 00000000..9588c2c1
--- /dev/null
+++ b/src/com/platform/service/IScriptMakeService.java
@@ -0,0 +1,17 @@
+package com.platform.service;
+
+import java.util.List;
+
+import com.platform.entities.MyFileEntity;
+
+public interface IScriptMakeService {
+
+ public int makeCfg() throws Exception;
+
+ public int makeXml() throws Exception;
+
+ public int moveFiles(MyFileEntity file) throws Exception;
+
+ public List FindFiles() throws Exception;
+
+}
diff --git a/src/com/platform/service/impl/PreDataInfoServiceImpl.java b/src/com/platform/service/impl/PreDataInfoServiceImpl.java
index 1b4f8737..ec7aaf70 100644
--- a/src/com/platform/service/impl/PreDataInfoServiceImpl.java
+++ b/src/com/platform/service/impl/PreDataInfoServiceImpl.java
@@ -29,7 +29,6 @@ import com.platform.dao.PreDataInfoDao;
import com.platform.dao.VolumeDao;
import com.platform.entities.PagerOptions;
import com.platform.entities.PreDataInfo;
-import com.platform.entities.PreDataInfoFull;
import com.platform.entities.RegionalismEntity;
import com.platform.entities.SystemEntity;
import com.platform.service.IPreDataInfoService;
@@ -64,9 +63,9 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
List errArea = new ArrayList();
List errFile = new ArrayList();
// 待增加的
- List all2Insert = new ArrayList();
+ List all2Insert = new ArrayList();
// 待修改的
- List all2Update = new ArrayList();
+ List all2Update = new ArrayList();
//excel读出的 所有
List all = new ArrayList();
//excel读出的 所有修改操作的数据
@@ -99,7 +98,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
//Excel导入
try {
//excel数据 --> java bean
- List subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, PreDataInfo.class, "id", "workRange");
+ List subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, PreDataInfo.class, "id", "workRange","sysCode","updateTime");
if (null != subPreData && subPreData.size() > 0) {
//是否是 同一个县区的 系统--是则 加入
boolean isSameArea = true;
@@ -160,14 +159,14 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
if (sysNames.size() > 0) {
listSystem = systemCodeDao.findByName(sysNames);
}
- Map syscodeMap = new HashMap();
+ Map syscodeMap = new HashMap();
for (SystemEntity systemEntity : listSystem) {
syscodeMap.put(systemEntity.getSystemName(), String.valueOf(systemEntity.getCode()));
}
for ( PreDataInfo systemEntity : list4AddSystem) {
- PreDataInfoFull systemFull = new PreDataInfoFull();
+ PreDataInfo systemFull = new PreDataInfo();
BeanCopy.copyBean(systemEntity, systemFull);
- systemFull.setSysCode(syscodeMap.get(systemFull.getSysName()));
+ systemFull.setSysCode((int) syscodeMap.get(systemFull.getSysName()));
systemFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
all2Insert.add(systemFull);
}
@@ -182,7 +181,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
this.addArea(list4AddArea);
}
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统
- List allAreaInsert = new ArrayList();
+ List allAreaInsert = new ArrayList();
List sysNamesArea = new ArrayList();
for (PreDataInfo preDataInfo : list4AddArea) {
sysNamesArea.add(preDataInfo.getSysName());
@@ -192,14 +191,14 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
if (sysNamesArea.size() > 0) {
listSystem = systemCodeDao.findByName(sysNamesArea);
}
- Map syscodeMap = new HashMap();
+ Map syscodeMap = new HashMap();
for (SystemEntity systemEntity : listSystem) {
syscodeMap.put(systemEntity.getSystemName(), String.valueOf(systemEntity.getCode()));
}
for (PreDataInfo preDataInfo : list4AddArea) {
- PreDataInfoFull areaFull = new PreDataInfoFull();
+ PreDataInfo areaFull = new PreDataInfo();
BeanCopy.copyBean(preDataInfo, areaFull);
- areaFull.setSysCode(syscodeMap.get(areaFull.getSysName()));
+ areaFull.setSysCode((int) syscodeMap.get(areaFull.getSysName()));
areaFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
allAreaInsert.add(areaFull);
}
@@ -211,7 +210,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
//在 pre_data_info表中 更新 操作为 (修改) 的系统
if (list4Update.size() > 0) {
- List allUpdate = new ArrayList();
+ List allUpdate = new ArrayList();
// 查询系统 code
for (PreDataInfo preDataInfo : list4Update) {
sysNamesArea.add(preDataInfo.getSysName());
@@ -225,13 +224,13 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
syscodeMap.put(systemEntity.getSystemName(), String.valueOf(systemEntity.getCode()));
}
for (PreDataInfo preUpdate : list4Update) {
- PreDataInfoFull UpdateFull = new PreDataInfoFull();
+ PreDataInfo UpdateFull = new PreDataInfo();
BeanCopy.copyBean(preUpdate, UpdateFull);
- UpdateFull.setSysCode(syscodeMap.get(UpdateFull.getSysName()));
+ UpdateFull.setSysCode((int) syscodeMap.get(UpdateFull.getSysName()));
UpdateFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
allUpdate.add(UpdateFull);
}
- for (PreDataInfoFull preEntity : allUpdate) {
+ for (PreDataInfo preEntity : allUpdate) {
preDataInfoDao.update(preEntity);
}
}
@@ -324,7 +323,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
XSSFWorkbook result = null;
try {
workbook = new XSSFWorkbook(res.getInputStream());
- result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list, "id", "workRange");
+ result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list, "id", "workRange","sysCode","updateTime");
} catch (IllegalArgumentException
| IllegalAccessException | IOException e) {
errList.add(e.getMessage());
@@ -332,14 +331,10 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
try {
File f = new File(path);
FileOutputStream fileOut = null;
- if (f.exists()) {
- fileOut = new FileOutputStream(f);
- result.write(fileOut);
- fileOut.close();
- }
- else {
- errList.add("without this file "+path);
- }
+ f.createNewFile();
+ fileOut = new FileOutputStream(f);
+ result.write(fileOut);
+ fileOut.close();
} catch (IOException e) {
errList.add(e.getMessage());
}
diff --git a/src/com/platform/service/impl/ScriptMakeService.java b/src/com/platform/service/impl/ScriptMakeService.java
new file mode 100644
index 00000000..e07f54e3
--- /dev/null
+++ b/src/com/platform/service/impl/ScriptMakeService.java
@@ -0,0 +1,116 @@
+package com.platform.service.impl;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import javax.annotation.Resource;
+
+import org.apache.log4j.Logger;
+import org.springframework.stereotype.Service;
+
+import com.platform.dao.PreDataInfoDao;
+import com.platform.entities.DefaultDataDescription;
+import com.platform.entities.MyFileEntity;
+import com.platform.entities.PreDataInfo;
+import com.platform.service.IScriptMakeService;
+import com.platform.utils.Configs;
+import com.platform.utils.Constant;
+import com.platform.utils.FileOperateHelper;
+import com.platform.utils.XmlOperationByDom4j;
+
+@Service(value = "scriptMakeService")
+public class ScriptMakeService implements IScriptMakeService {
+
+ public static Logger log = Configs.DAILY_ROLLING_LOGGER.getLogger(PreDataInfoServiceImpl.class);
+
+ @Resource(name = "preDataInfoDao")
+ private PreDataInfoDao preDataInfoDao;
+
+
+ @Override
+ public int makeCfg() throws Exception {
+ log.info("makeCfg");
+ List systemInfoList = preDataInfoDao.findAll();
+ String path = FileOperateHelper.addLastSeparator(Configs.sql_script_path_standard);
+ StringBuffer sb = new StringBuffer();
+ sb.append("市\t县(市、区)\t行政区划代码\r\n");
+ Map startData = new HashMap();
+ for (PreDataInfo preDataInfo : systemInfoList) {
+ startData.put(preDataInfo.getAreaCode(), preDataInfo);
+
+ }
+ //以地区为准--一个地区一个xml
+ for ( String key : startData.keySet()) {
+ PreDataInfo preDataInfo = (PreDataInfo) startData.get(key);
+ sb.append(preDataInfo.getCityName());
+ sb.append("\t");
+ sb.append(preDataInfo.getDistrictName());
+ sb.append("\t");
+ sb.append(preDataInfo.getAreaCode());
+ sb.append("\r\n");
+ }
+ FileOperateHelper.fileWrite(path+Constant.cfgFileName, sb.toString());
+ log.info("makeCfg--end");
+ return 1;
+ }
+
+ @Override
+ public int makeXml() throws Exception {
+ log.info("makeXml");
+ List systemInfoList = preDataInfoDao.findAll();
+ String dirpath = FileOperateHelper.addLastSeparator(Configs.sql_script_path_standard);
+ Map> map = new HashMap>();
+ for (PreDataInfo preDataInfo : systemInfoList) {
+ putSystemByAreaCode(map, preDataInfo.getAreaCode(), preDataInfo);
+ }
+ //一个地区一个xml
+ for ( String key : map.keySet()) {
+ String areaPath = dirpath + key;
+ File f = new File(areaPath);
+ f.mkdir();
+ List