2018-06-03 22:26:41 +08:00

608 lines
24 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin.jspf" %>
<%@page import="com.amarsoft.awe.common.attachment.*"%>
<%@page import="java.io.File"%>
<%@page import="java.io.FileInputStream"%>
<%@page import="com.amarsoft.are.jbo.*"%>
<%@page import="com.amarsoft.app.als.dataimport.ExcelImportManager"%>
<%@page import="java.util.Date,com.amarsoft.app.als.credit.common.action.*"%>
<%@page import="jxl.*"%>
<script type="text/javascript">
<%!
//根据青岛的票据导入功能在ALS7.4.1中加入对应模块
//add by hzcheng
//modify by lyin 2014-01-20
public static boolean dateCheck(String data){
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
dateFormat.setLenient(false);
Date d = dateFormat.parse(data);
return true;
}catch (Exception e) {
e.printStackTrace();
return false;
}
}
public static String dateConvert(String data){
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
dateFormat.setLenient(false);
Date d = dateFormat.parse(data);
return dateFormat.format(d);
}catch (Exception e) {
e.printStackTrace();
}
return data;
}
%>
<%
File file = null;
FileInputStream inputStream = null;
boolean Flag = true;
try{
AmarsoftUpload myAmarsoftUpload = new AmarsoftUpload();
myAmarsoftUpload.initialize(pageContext);
myAmarsoftUpload.upload();
String sBillType = (String)myAmarsoftUpload.getRequest().getParameter("BillType");
if(sBillType==null||"".equals(sBillType))throw new Exception("参数BillType丢失请检查是否传入此参数");
String sObjectNo = (String)myAmarsoftUpload.getRequest().getParameter("ObjectNo");
String sObjectType = (String)myAmarsoftUpload.getRequest().getParameter("ObjectType");
String filePathName = myAmarsoftUpload.getFiles().getFile(0).getFilePathName();
String fileName = myAmarsoftUpload.getFiles().getFile(0).getFileName();
String sFileSavePath = CurConfig.getConfigure("FileSavePath");
if(sFileSavePath==null)throw new Exception("请在als7.xml中配置文件存放路径FileSavePath");
//创建存放目录
String excelSaveDirectory = sFileSavePath+"/excelimport";
File saveDic = new File(excelSaveDirectory);//如果没有该目录,则创建
if(!saveDic.exists())saveDic.mkdirs();
//存文件
out.println("document.writeln('文件上传中...<br/>');");
out.flush();
String sFileFullPath = excelSaveDirectory+"/"+System.currentTimeMillis()+fileName;
myAmarsoftUpload.getFiles().getFile(0).saveAs(sFileFullPath);
file = new File(sFileFullPath);
//解析文件
out.println("document.writeln('文件上传完成,正在解析...,请勿关闭窗口<br/>');");
out.flush();
String pattern = "[\r\n]+";
inputStream = new FileInputStream(file);
Workbook wb = Workbook.getWorkbook(inputStream); //得到工作薄
Sheet sheet = wb.getSheet(0);
int iRowCount = 0;
try
{
iRowCount = Integer.parseInt(sheet.getCell("B1").getContents().replaceAll(pattern, ""));
}catch(Exception ex)
{
out.println("document.writeln('EXCEL中笔数录入错误必须录入数字且要与列表笔数相同<br/>');");
ex.printStackTrace();
throw ex;
}
JBOTransaction tx = JBOFactory.getFactory().createTransaction();
if("1".equals(sBillType))//银行承兑汇票导入
{
for(int i = 3 ; i <= 2+iRowCount; i ++){
String sBillSum = sheet.getCell("A"+i).getContents().replaceAll(pattern, "");
String sWRITEDATE = sheet.getCell("B"+i).getContents().replaceAll(pattern, "");
String sMATURITY = sheet.getCell("C"+i).getContents().replaceAll(pattern, "");
String sACCEPTOR = sheet.getCell("D"+i).getContents().replaceAll(pattern, "");
String sGATHERINGNAME = sheet.getCell("E"+i).getContents().replaceAll(pattern, "");
String sDeductAccNo = sheet.getCell("F"+i).getContents().replaceAll(pattern, "");
try{
Double.parseDouble(sBillSum);
}catch(Exception ex){
out.println("document.writeln('第"+(i-2)+"行数据【票据金额】有误!<br/>');");
Flag = false;
}
//校验开始
if(!this.dateCheck(sWRITEDATE)){
out.println("document.writeln('第"+(i-2)+"行数据【出票日】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}else{
sWRITEDATE = this.dateConvert(sWRITEDATE);
}
if(!this.dateCheck(sMATURITY)){
out.println("document.writeln('第"+(i-2)+"行数据【到期日】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}else{
sMATURITY = this.dateConvert(sMATURITY);
}
if(sMATURITY!=null && sMATURITY.compareTo(sWRITEDATE) < 0){
out.println("document.writeln('第"+(i-2)+"行数据【到期日】不能小于【出票日】,请检查!<br/>');");
Flag = false;
}
if(Flag){
BizObjectManager bom = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BILL_INFO");
BizObject boBb = bom.newObject();
boBb.setAttributeValue("ObjectType",sObjectType);
boBb.setAttributeValue("ObjectNo",sObjectNo);
boBb.setAttributeValue("BillSum",sBillSum);
boBb.setAttributeValue("BILLTYPE","BA");
boBb.setAttributeValue("WRITEDATE",sWRITEDATE);
boBb.setAttributeValue("MATURITY",sMATURITY);
boBb.setAttributeValue("Acceptor",sACCEPTOR);
boBb.setAttributeValue("GATHERINGNAME",sGATHERINGNAME);
boBb.setAttributeValue("DeductAccNo",sDeductAccNo);
boBb.setAttributeValue("InputUserID",CurUser.getUserID());
boBb.setAttributeValue("InputOrgID",CurUser.getOrgID());
boBb.setAttributeValue("InputDate",StringFunction.getToday());
boBb.setAttributeValue("UpdateDate",StringFunction.getToday());
tx.join(bom);
bom.saveObject(boBb);
}
}
}
else if("2".equals(sBillType)) //(电子)银行承兑汇票贴现导入
{
BizObjectManager boam = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BUSINESS_APPLY");
BizObject boba = boam.createQuery("SerialNo=:SerialNo").setParameter("SerialNo",sObjectNo).getSingleResult();
String sProductID = "",sCurrency = "";
if(boba == null)
{
out.println("document.writeln('未取到对应申请信息!<br/>');");
Flag = false;
}
else
{
sProductID = boba.getAttribute("BusinessType").getString();
sCurrency = boba.getAttribute("BusinessCurrency").getString();
}
for(int i = 3 ; i <= 2+iRowCount; i ++)
{
String sBankFlag = sheet.getCell("A"+i).getContents().replaceAll(pattern, ""); //是否本行票据*
String sBillNo = sheet.getCell("B"+i).getContents().replaceAll(pattern, ""); //票据号码*
String sBillSum = sheet.getCell("C"+i).getContents().replaceAll(pattern, "");//票面金额*
String sWRITEDATE = sheet.getCell("D"+i).getContents().replaceAll(pattern, "");//票据签发日*
String sMATURITY = sheet.getCell("E"+i).getContents().replaceAll(pattern, "");//票据到期日*
String sFinishDate = sheet.getCell("F"+i).getContents().replaceAll(pattern, "");//贴现日期*
String sBeginDate = sheet.getCell("G"+i).getContents().replaceAll(pattern, "");//票据查询回复日期*
String sACCEPTORREGION = sheet.getCell("H"+i).getContents().replaceAll(pattern, "");//票据来源*
String sEndorseTimes = sheet.getCell("I"+i).getContents().replaceAll(pattern, "");//调整天数*
String sRate = sheet.getCell("J"+i).getContents().replaceAll(pattern, "");//贴现月利率(‰)*
String sACCEPTORID = sheet.getCell("K"+i).getContents().replaceAll(pattern, "");//承兑行行号*
String sDeductAccNo = sheet.getCell("L"+i).getContents().replaceAll(pattern, "");//放款账号*
//校验开始
if("否".equals(sBankFlag))
{
sBankFlag = "2";
}
else if("是".equals(sBankFlag))
{
sBankFlag = "1";
}
else
{
out.println("document.writeln('第"+(i-2)+"行数据【是否本行票据】有误,请检查!<br/>');");
Flag = false;
}
try
{
Double.parseDouble(sBillSum);
}
catch(Exception ex)
{
out.println("document.writeln('第"+(i-2)+"行数据【票据金额】有误!<br/>');");
Flag = false;
}
if(!this.dateCheck(sWRITEDATE))
{
out.println("document.writeln('第"+(i-2)+"行数据【票据签发日】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sWRITEDATE = this.dateConvert(sWRITEDATE);
}
if(!this.dateCheck(sMATURITY))
{
out.println("document.writeln('第"+(i-2)+"行数据【票据到期日】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sMATURITY = this.dateConvert(sMATURITY);
}
if(!this.dateCheck(sFinishDate))
{
out.println("document.writeln('第"+(i-2)+"行数据【贴现日期】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sFinishDate = this.dateConvert(sFinishDate);
}
if(!this.dateCheck(sBeginDate))
{
out.println("document.writeln('第"+(i-2)+"行数据【票据查询回复日期】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sBeginDate = this.dateConvert(sBeginDate);
}
if("同城".equals(sACCEPTORREGION))
{
sACCEPTORREGION = "0";
}
else if("异地".equals(sACCEPTORREGION))
{
sACCEPTORREGION = "1";
}
else
{
out.println("document.writeln('第"+(i-2)+"行数据【票据来源】有误,请检查!<br/>');");
Flag = false;
}
try
{
Integer.parseInt(sEndorseTimes);
}
catch(Exception ex)
{
out.println("document.writeln('第"+(i-2)+"行数据【调整天数】有误!<br/>');");
Flag = false;
}
try
{
Double.parseDouble(sRate);
}
catch(Exception ex)
{
out.println("document.writeln('第"+(i-2)+"行数据【贴现月利率(‰)】有误!<br/>');");
Flag = false;
}
if(sMATURITY!=null && sMATURITY.compareTo(sFinishDate) < 0){
out.println("document.writeln('第"+(i-2)+"行数据【票据到期日】不能小于【贴现日期】,请检查!<br/>');");
Flag = false;
}
if(sWRITEDATE != null && sWRITEDATE.compareTo(sFinishDate) > 0)
{
out.println("document.writeln('第"+(i-2)+"行数据【票据签发日】不能大于【贴现日期】,请检查!<br/>');");
Flag = false;
}
BizObjectManager manager = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BILL_INFO");
int iCount=manager.createQuery("BillNo=:BillNo and FinishDate is not null and FinishDate <> ' ' and ObjectType = :ObjectType and ObjectNo = :ObjectNo").setParameter("BillNo",sBillNo).setParameter("ObjectType",sObjectType).setParameter("ObjectNo",sObjectNo).getTotalCount();
if(iCount > 0){
out.println("document.writeln('第"+(i-2)+"行数据【票据号:" + sBillNo + "】已存在,请检查!<br/>');");
Flag = false;
}
System.out.println("===========Flag==================");
if(Flag)
{
String sACCEPTORCUSTOMERID = "",sACCEPTORCUSTOMERNAME = "";
BillAction ba = new BillAction();
System.out.println("=============================");
String sReturn = ba.getCustomerID();
System.out.println("=============================");
if(!"false".equals(sReturn))
{
sACCEPTORCUSTOMERID = sReturn.split("@")[0];
sACCEPTORCUSTOMERNAME = sReturn.split("@")[1];
}
BizObjectManager bom = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BILL_INFO");
BizObject boBb = bom.newObject();
String sSerialNo1 = DBKeyHelp.getSerialNo("BILL_INFO", "SerialNo",Sqlca);
boBb.setAttributeValue("SerialNo",sSerialNo1);
boBb.setAttributeValue("ObjectType",sObjectType);
boBb.setAttributeValue("ObjectNo",sObjectNo);
boBb.setAttributeValue("IsLocalBill",sBankFlag);//是否本行票据
boBb.setAttributeValue("BillNo",sBillNo);//票据号码
boBb.setAttributeValue("BillSum",sBillSum);//票面金额
boBb.setAttributeValue("WRITEDATE",sWRITEDATE);//票据签发日
boBb.setAttributeValue("MATURITY",sMATURITY);//票据到期日
boBb.setAttributeValue("FinishDate",sFinishDate);//贴现日期
boBb.setAttributeValue("BeginDate",sBeginDate);//票据查询回复日期
boBb.setAttributeValue("HolderID",sACCEPTORREGION);//票据来源(同城、异地)
boBb.setAttributeValue("EndorseTimes",sEndorseTimes);//调整天数
boBb.setAttributeValue("Rate",sRate);//贴现月利率(‰)
//boBb.setAttributeValue("ACCEPTORAREA",sACCEPTORPROVINCEID);//承兑人开户行所在行政区域
//boBb.setAttributeValue("ACCEPTORCITY",sACCEPTORCITY);//承兑人开户行所在市
//boBb.setAttributeValue("ACCEPTORSAMPLE",sACCEPTORSAMPLE);
boBb.setAttributeValue("AcceptorID",sACCEPTORID);//承兑行行号
//boBb.setAttributeValue("Acceptor",sACCEPTORID);//承兑银行名称
//boBb.setAttributeValue("ACCEPTORID",sACCEPTORID);//计息周期
boBb.setAttributeValue("DeductAccNo",sDeductAccNo);//放款帐号
//boBb.setAttributeValue("ACCEPTORCUSTOMERID",sACCEPTORCUSTOMERID);
boBb.setAttributeValue("InputUserID",CurUser.getUserID());
boBb.setAttributeValue("InputOrgID",CurUser.getOrgID());
boBb.setAttributeValue("InputDate",StringFunction.getToday());
boBb.setAttributeValue("UpdateDate",StringFunction.getToday());
bom.saveObject(boBb);
}
}
}
else if("3".equals(sBillType))//商业电子承兑汇票贴现导入
{
BizObjectManager boam = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BUSINESS_APPLY");
BizObject boba = boam.createQuery("SerialNo=:SerialNo").setParameter("SerialNo",sObjectNo).getSingleResult();
String sProductID = "",sCurrency = "";
if(boba == null)
{
out.println("document.writeln('未取到对应申请信息!<br/>');");
Flag = false;
}
else
{
sProductID = boba.getAttribute("BusinessType").getString();
sCurrency = boba.getAttribute("BusinessCurrency").getString();
}
for(int i = 3 ; i <= 2+iRowCount; i ++)
{
String sBankFlag = "2"; //是否本行票据*
String sBillNo = sheet.getCell("A"+i).getContents().replaceAll(pattern, ""); //票据号码*
String sBillSum = sheet.getCell("B"+i).getContents().replaceAll(pattern, "");//票面金额*
String sWRITEDATE = sheet.getCell("C"+i).getContents().replaceAll(pattern, "");//票据签发日*
String sMATURITY = sheet.getCell("D"+i).getContents().replaceAll(pattern, "");//票据到期日*
String sFinishDate = sheet.getCell("E"+i).getContents().replaceAll(pattern, "");//贴现日期*
String sBeginDate = sheet.getCell("F"+i).getContents().replaceAll(pattern, "");//票据查询回复日期*
String sACCEPTORREGION = sheet.getCell("G"+i).getContents().replaceAll(pattern, "");//票据来源*
String sEndorseTimes = sheet.getCell("H"+i).getContents().replaceAll(pattern, "");//调整天数*
String sRate = sheet.getCell("I"+i).getContents().replaceAll(pattern, "");//贴现月利率(‰)*
String sASSUREDISCOUNTFLAG = sheet.getCell("J"+i).getContents().replaceAll(pattern, "");//是否有保贴函*
String sASSUREDISCOUNTNO = sheet.getCell("K"+i).getContents().replaceAll(pattern, ""); //保贴函协议号*
String sACCEPTOR = sheet.getCell("L"+i).getContents().replaceAll(pattern, "");//承兑人名称*
String sACCEPTORID = sheet.getCell("M"+i).getContents().replaceAll(pattern, "");//承兑行行号*
String sDeductAccNo = sheet.getCell("N"+i).getContents().replaceAll(pattern, "");//放款账号*
//校验开始
try
{
Double.parseDouble(sBillSum);
}
catch(Exception ex)
{
out.println("document.writeln('第"+(i-2)+"行数据【票据金额】有误!<br/>');");
Flag = false;
}
if(!this.dateCheck(sWRITEDATE))
{
out.println("document.writeln('第"+(i-2)+"行数据【票据签发日】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sWRITEDATE = this.dateConvert(sWRITEDATE);
}
if(!this.dateCheck(sMATURITY))
{
out.println("document.writeln('第"+(i-2)+"行数据【票据到期日】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sMATURITY = this.dateConvert(sMATURITY);
}
if(!this.dateCheck(sFinishDate))
{
out.println("document.writeln('第"+(i-2)+"行数据【贴现日期】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sFinishDate = this.dateConvert(sFinishDate);
}
if(!this.dateCheck(sBeginDate))
{
out.println("document.writeln('第"+(i-2)+"行数据【票据查询回复日期】未按照YYYY/MM/DD格式填写<br/>');");
Flag = false;
}
else
{
sBeginDate = this.dateConvert(sBeginDate);
}
//System.out.println("票据来源:"+sACCEPTORREGION);
if("同城".equals(sACCEPTORREGION))
{
sACCEPTORREGION = "0";
}
else if("异地".equals(sACCEPTORREGION))
{
sACCEPTORREGION = "1";
}
else
{
out.println("document.writeln('第"+(i-2)+"行数据【票据来源】有误,请检查!<br/>');");
Flag = false;
}
try
{
Integer.parseInt(sEndorseTimes);
}
catch(Exception ex)
{
out.println("document.writeln('第"+(i-2)+"行数据【调整天数】有误!<br/>');");
Flag = false;
}
try
{
Double.parseDouble(sRate);
}
catch(Exception ex)
{
out.println("document.writeln('第"+(i-2)+"行数据【贴现年利率(%)】有误!<br/>');");
Flag = false;
}
if(sMATURITY!=null && sMATURITY.compareTo(sFinishDate) < 0){
out.println("document.writeln('第"+(i-2)+"行数据【票据到期日】不能小于【贴现日期】,请检查!<br/>');");
Flag = false;
}
if(sWRITEDATE != null && sWRITEDATE.compareTo(sFinishDate) > 0)
{
out.println("document.writeln('第"+(i-2)+"行数据【票据签发日】不能大于【贴现日期】,请检查!<br/>');");
Flag = false;
}
if("是".equals(sASSUREDISCOUNTFLAG))
{
sASSUREDISCOUNTFLAG = "1";
}
else if("否".equals(sASSUREDISCOUNTFLAG))
{
sASSUREDISCOUNTFLAG = "2";
}
else
{
out.println("document.writeln('第"+(i-2)+"行数据【是否有保贴函】有误,请检查!<br/>');");
Flag = false;
}
String sACCEPTORCUSTOMERID = "";
if("1".equals(sASSUREDISCOUNTFLAG) && (sASSUREDISCOUNTNO == null || "".equals(sASSUREDISCOUNTNO)))
{
out.println("document.writeln('第"+(i-2)+"行数据有保贴函,未录入【保贴函协议号】,请检查!<br/>');");
Flag = false;
}
BizObjectManager manager = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BILL_INFO");
int iCount=manager.createQuery("BillNo=:BillNo and FinishDate is not null and FinishDate <> ' ' and ObjectType = :ObjectType and ObjectNo = :ObjectNo").setParameter("BillNo",sBillNo).setParameter("ObjectType",sObjectType).setParameter("ObjectNo",sObjectNo).getTotalCount();
if(iCount > 0){
out.println("document.writeln('第"+(i-2)+"行数据【票据号:" + sBillNo + "】已存在,请检查!<br/>');");
Flag = false;
}
if(Flag)
{
//String sACCEPTORSAMPLE = sACCEPTORID.substring(0,3);
//String sACCEPTORCITY = "test";//sACCEPTORID.substring(3,7);
//String sACCEPTORPROVINCEID = Sqlca.getString("select SortNo from CODE_LIBRARY where CodeNo = 'BankCity' and ItemNo = '"+sACCEPTORCITY+"'");
BizObjectManager bom = com.amarsoft.are.jbo.JBOFactory.getFactory().getManager("jbo.app.BILL_INFO");
BizObject boBb = bom.newObject();
String sSerialNo2 = DBKeyHelp.getSerialNo("BILL_INFO", "SerialNo",Sqlca);
boBb.setAttributeValue("SerialNo",sSerialNo2);
boBb.setAttributeValue("ObjectType",sObjectType);
boBb.setAttributeValue("ObjectNo",sObjectNo);
boBb.setAttributeValue("IsLocalBill","2");
boBb.setAttributeValue("BillNo",sBillNo);
boBb.setAttributeValue("BillSum",sBillSum);
boBb.setAttributeValue("WRITEDATE",sWRITEDATE);
boBb.setAttributeValue("MATURITY",sMATURITY);
boBb.setAttributeValue("FinishDate",sFinishDate);
boBb.setAttributeValue("BeginDate",sBeginDate);
boBb.setAttributeValue("HolderID",sACCEPTORREGION);
boBb.setAttributeValue("EndorseTimes",sEndorseTimes);
boBb.setAttributeValue("Rate",sRate);
//boBb.setAttributeValue("ACCEPTORPROVINCEID",sACCEPTORPROVINCEID);
//boBb.setAttributeValue("ACCEPTORCITY",sACCEPTORCITY);
//boBb.setAttributeValue("ACCEPTORSAMPLE",sACCEPTORSAMPLE);
boBb.setAttributeValue("Acceptor",sACCEPTOR);
boBb.setAttributeValue("ACCEPTORID",sACCEPTORID);
boBb.setAttributeValue("DeductAccNo",sDeductAccNo);
//boBb.setAttributeValue("ACCEPTORCUSTOMERID",sACCEPTORCUSTOMERID);
boBb.setAttributeValue("ISSAFEGUARD",sASSUREDISCOUNTFLAG);
boBb.setAttributeValue("SAFEGUARDPROTOCOL",sASSUREDISCOUNTNO);
boBb.setAttributeValue("InputUserID",CurUser.getUserID());
boBb.setAttributeValue("InputOrgID",CurUser.getOrgID());
boBb.setAttributeValue("InputDate",StringFunction.getToday());
boBb.setAttributeValue("UpdateDate",StringFunction.getToday());
bom.saveObject(boBb);
}
}
}
//最后数据处理
if(Flag)
{
tx.commit();
BillSingleCopy BA = new BillSingleCopy();
BA.setObjectNo(sObjectNo);
BA.setObjectType(sObjectType);
if("1".equals(sBillType))
{
BA.UpdateBusinessSum1();
}
else
{
String result= BA.UpdateBusinessSum(Sqlca);
}
}
else
{
tx.rollback();
}
out.println("document.writeln('文件解析完成!<br/>');");
}catch(Exception e){
out.println("document.writeln('文件解析出错,请确认按照模板填写!<br/>');");
ARE.getLog().error("上传并解析文件发生错误",e);
Flag = false;
}finally{
if(inputStream!=null){
inputStream.close();
inputStream = null;
}
if(file!=null){
if(file.exists()&&file.isFile()){
boolean deleteSucess = file.delete();//完成后,删除文件
if(!deleteSucess){
ARE.getLog().debug("删除文件["+file.getAbsolutePath()+"]失败,该文件已不再使用,请定期清除");
}else{
ARE.getLog().trace("删除文件["+file.getAbsolutePath()+"]成功");
}
}
}
if(Flag)
{
out.println("top.returnValue='导入文件成功!';");
out.println("top.close();");//上传文件成功!
}
else
{
out.println("top.returnValue='导入文件失败!';");
}
}
%>
</script>
<%@ include file="/Frame/resources/include/include_end.jspf" %>