/// <summary> /// 检查所有数据 /// </summary> /// <param name="newHouse"></param> /// <param name="cityName"></param> /// <param name="message"></param> /// <returns></returns> public static bool CheckHouseAll(案例信息 newHouse, string cityName, out string message) { message = ""; if (!SpiderHelp.CheckHouseArea(newHouse.面积String)) { message = string.Format("面积不合格,下一个:{0}-(value_mj:{1},url:{2}--)", cityName, newHouse.面积, newHouse.URL); return(false); } if (!SpiderHelp.CheckHouseUnitPrice(newHouse.单价String)) { message = string.Format("单价不合格,下一个:{0}-(value_dj:{1},url:{2}--)", cityName, newHouse.单价, newHouse.URL); return(false); } if (!SpiderHelp.CheckHouseFloor(newHouse.总楼层String, newHouse.所在楼层String)) { message = string.Format("所在楼层或总楼层不合格,下一个:{0}-(value_zlc:{1},value_szlc:{1},url:{2}--)", cityName, newHouse.总楼层, newHouse.所在楼层, newHouse.URL); return(false); } return(true); }
//static string key_jzlb = "建筑类别"; //static string key_cqxz = "产权性质"; //static string key_ptss = "配套设施"; #endregion /// <summary> /// 数据保存到Excel /// </summary> /// <param name="path"></param> /// <param name="excelInfo"></param> public static void SaveExcel(string cityName, NewHouse newHouse) { //保存数据 log.Debug(string.Format("Excel保存中:{0}-(url:{1}--)", cityName, newHouse.Url)); string nowDate = DateTime.Now.ToString("yyyy-MM-dd"); string fileName = string.Format("{0}_{1}_{2}.xls", nowDate, newHouse.Wzly, cityName); string path = SpiderHelp.GetConfigDire() + "DataSource\\" + fileName; string directory = Path.GetDirectoryName(path); if (!Directory.Exists(directory)) { Directory.CreateDirectory(directory); } if (newHouse == null) { return; } Excel.Application app = new Excel.Application(); Excel.Workbook book = null; object missing = System.Reflection.Missing.Value; try { int nowRow = 0; bool existsFile = false; Excel.Worksheet sheet; if (File.Exists(path)) { existsFile = true; app.Workbooks.Open(path, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing); book = (Excel.Workbook)app.ActiveWorkbook; sheet = (Excel.Worksheet)book.Sheets[1]; nowRow = sheet.UsedRange.Cells.Rows.Count; } else { app.Application.Workbooks.Add(true); book = (Excel.Workbook)app.ActiveWorkbook; sheet = (Excel.Worksheet)book.ActiveSheet; sheet.Cells[1, 1] = SaveData.key_lpm; sheet.Cells[1, 2] = SaveData.key_alsj; sheet.Cells[1, 3] = SaveData.key_xzq; sheet.Cells[1, 4] = SaveData.key_pq; sheet.Cells[1, 5] = SaveData.key_ld; sheet.Cells[1, 6] = SaveData.key_fh; sheet.Cells[1, 7] = SaveData.key_yt; sheet.Cells[1, 8] = SaveData.key_mj; sheet.Cells[1, 9] = SaveData.key_dj; sheet.Cells[1, 10] = SaveData.key_allx; sheet.Cells[1, 11] = SaveData.key_jg; sheet.Cells[1, 12] = SaveData.key_jzlx; sheet.Cells[1, 13] = SaveData.key_zj; sheet.Cells[1, 14] = SaveData.key_szlc; sheet.Cells[1, 15] = SaveData.key_zlc; sheet.Cells[1, 16] = SaveData.key_hx; sheet.Cells[1, 17] = SaveData.key_cx; sheet.Cells[1, 18] = SaveData.key_zx; sheet.Cells[1, 19] = SaveData.key_jznd; sheet.Cells[1, 20] = SaveData.key_title; sheet.Cells[1, 21] = SaveData.key_phone; sheet.Cells[1, 22] = SaveData.key_url; sheet.Cells[1, 23] = SaveData.key_bz; sheet.Cells[1, 24] = SaveData.key_wzly; sheet.Cells[1, 25] = SaveData.key_address; nowRow = 1; } sheet.Cells[nowRow + 1, 1] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Lpm) ? newHouse.Lpm : ""); sheet.Cells[nowRow + 1, 2] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Alsj) ? newHouse.Alsj : ""); sheet.Cells[nowRow + 1, 3] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Xzq) ? newHouse.Xzq : ""); sheet.Cells[nowRow + 1, 4] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Pq) ? newHouse.Pq : ""); sheet.Cells[nowRow + 1, 5] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Ld) ? newHouse.Ld : ""); sheet.Cells[nowRow + 1, 6] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Fh) ? newHouse.Fh : ""); sheet.Cells[nowRow + 1, 7] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Yt) ? newHouse.Yt : ""); sheet.Cells[nowRow + 1, 8] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Mj) ? newHouse.Mj : ""); sheet.Cells[nowRow + 1, 9] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Dj) ? newHouse.Dj : ""); sheet.Cells[nowRow + 1, 10] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Allx) ? newHouse.Allx : ""); sheet.Cells[nowRow + 1, 11] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Jg) ? newHouse.Jg : ""); sheet.Cells[nowRow + 1, 12] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Jzlx) ? newHouse.Jzlx : ""); sheet.Cells[nowRow + 1, 13] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Zj) ? newHouse.Zj : ""); sheet.Cells[nowRow + 1, 14] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Szlc) ? newHouse.Szlc : ""); sheet.Cells[nowRow + 1, 15] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Zlc) ? newHouse.Zlc : ""); sheet.Cells[nowRow + 1, 16] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Hx) ? newHouse.Hx : ""); sheet.Cells[nowRow + 1, 17] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Cx) ? newHouse.Cx : ""); sheet.Cells[nowRow + 1, 18] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Zx) ? newHouse.Zx : ""); sheet.Cells[nowRow + 1, 19] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Jznd) ? newHouse.Jznd : ""); sheet.Cells[nowRow + 1, 20] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Title) ? newHouse.Title : ""); sheet.Cells[nowRow + 1, 21] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Phone) ? newHouse.Phone : ""); sheet.Cells[nowRow + 1, 22] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Url) ? newHouse.Url : ""); sheet.Cells[nowRow + 1, 23] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Bz) ? newHouse.Bz : ""); sheet.Cells[nowRow + 1, 24] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Wzly) ? newHouse.Wzly : ""); sheet.Cells[nowRow + 1, 25] = ExcelReplaceStr(!string.IsNullOrEmpty(newHouse.Wzly) ? newHouse.Addres : ""); //保存excel文件 if (existsFile) { book.Save(); } else { book.SaveCopyAs(path); } //关闭文件 book.Close(false, missing, missing); //退出excel app.Quit(); } catch (Exception ex) { log.Error(string.Format("title:{0}--lpm:{1}--excel导入异常", newHouse.Title, newHouse.Lpm), ex); if (book != null) { book.Close(false, missing, missing); } app.Quit(); System.Threading.Thread.Sleep(2000); //SaveExcel(path, excelInfo); } }