package com.dashitech.callcenter.socket; import com.dashitech.businessdata.dao.*; import com.dashitech.businessdata.entity.CallLogEntity; import com.dashitech.businessdata.entity.CallRecordEntity; import com.dashitech.businessdata.entity.DepartmentEntity; import com.dashitech.businessdata.entity.HospitalConfig; import com.dashitech.callcenter.webSocket.service.PhoneWebSocket; import com.dashitech.hsms.dao.IHsmsCallLogDAO; import com.dashitech.hsms.dao.IHsmsDepartmentDAO; import com.dashitech.hsms.entity.HsmsCallLogEntity; import com.dashitech.hsms.entity.HsmsDepartmentEntity; import com.dashitech.utils.DateUtil2; import com.dashitech.utils.JsonUtil; import com.dashitech.utils.PropertiesUtil; import com.fasterxml.jackson.databind.ObjectMapper; import net.sf.json.JSONObject; import org.apache.commons.lang.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.io.DataInputStream; import java.io.DataOutputStream; import java.net.Socket; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.*; /** * Created by chi on 2020/8/6. */ @Service public class HandlerThread { private static Log log = LogFactory.getLog(HandlerThread.class); // 这里使用静态,让 service 属于类 private static ICallLogDAO callLogDAO; private static ICallRecordDAO callRecordDAO; private static IHsmsCallLogDAO hsmsCallLogDAO; @Autowired public void setHsmsCallRecordDAO(IHsmsCallLogDAO hsmsCallLogDAO) { HandlerThread.hsmsCallLogDAO = hsmsCallLogDAO; } @Autowired public void setCallRecordDAO(ICallRecordDAO callRecordDAO) { HandlerThread.callRecordDAO = callRecordDAO; } @Autowired public void setCallLogDAO(ICallLogDAO callLogDAO) { HandlerThread.callLogDAO = callLogDAO; } private static IDictionaryDAO dictionaryDAO; @Autowired public void setDictionaryDAO(IDictionaryDAO dictionaryDAO) { HandlerThread.dictionaryDAO = dictionaryDAO; } private static IDepartmentDAO departmentDAO; @Autowired public void setDepartmentDAO(IDepartmentDAO departmentDAO) { HandlerThread.departmentDAO = departmentDAO; } private static IHospitalConfigDAO hospitalConfigDAO; @Autowired public void setHospitalConfigDAO(IHospitalConfigDAO hospitalConfigDAO) { HandlerThread.hospitalConfigDAO = hospitalConfigDAO; } private static IHsmsDepartmentDAO hsmsDepartmentDAO; @Autowired public static void setHsmsDepartmentDAO(IHsmsDepartmentDAO hsmsDepartmentDAO) { HandlerThread.hsmsDepartmentDAO = hsmsDepartmentDAO; } private static String project; private static String projectMain; private static String recordNginxPath; private static String recordRegex; private Socket sc; private static Map phoneMap = new HashMap<>(); private static Map phoneLog = new HashMap<>(); private String his = ""; private String serialNo = ""; public HandlerThread() { } public HandlerThread(Socket client) { sc = client; } public void run() { DataInputStream input = null; DataOutputStream output = null; try { // sc.setSoTimeout(10000); input = new DataInputStream(sc.getInputStream()); output = new DataOutputStream(sc.getOutputStream()); String reset = ""; //持续读取内部消息 while (true) { // System.out.println("处理客户端数据:"+input.readUTF()); // System.out.println("3333333333333333333333"); //获取信息流长度 byte[] b = new byte[4]; reset = "keepalive"; input.read(b); int count = bytes2Int(b); // System.out.println("count::"+count); //根据信息流长度获取信息流 byte[] b1 = new byte[count]; input.read(b1); //将信息流转换为String String data = new String(b1); System.out.println("data:"+data+"his"+his); if(project == null) { project = PropertiesUtil.getProperty("project"); projectMain = PropertiesUtil.getProperty("project.main"); recordNginxPath = PropertiesUtil.getProperty("db.hjzx.record.nginx"); recordRegex = PropertiesUtil.getProperty("db.hjzx.record.path.regex"); } if (data != null || !data.equals("")&&data.substring(0,1).equals("{")) { log.info("流程1:"+his); if (JsonUtil.toJSONObject(data).containsKey("channelStatusList")){ List llist = JsonUtil.toJSONObject(data).optJSONArray("channelStatusList"); JSONObject jsonObject = JsonUtil.toJSONObject(llist.get(0).toString()); sendSocket(jsonObject,his); handleCallLog(jsonObject,his); reset = "channelstatus"; }else if(JsonUtil.toJSONObject(data).containsKey("recordList")){ saveCallLog(data,his); reset = "addrec"; } } if (data != null && data.length() >= 10){ log.info("流程2:"+his); String dataStr = ""; if (reset.equals("addrec")){ dataStr = "{\"cmd\":\""+reset+"\",\"error\":\"0\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}"; }else{ dataStr = "{\"cmd\":\""+reset+"\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}"; } if (data.indexOf("loginreq") >= 0){ //{"cmd":"loginreq","ipaddr":"192.168.25.37","serialNo":"21380501019804","recordNumber":4,"webport":80,"filestoretype":0}his if(JsonUtil.toJSONObject(data).containsKey("serialNo")){ serialNo = JsonUtil.toJSONObject(data).getString("serialNo"); }else{ serialNo = JsonUtil.toJSONObject(data).getString("sernelNo"); } // 设备 21040501017523 写死支持 院区1 if(serialNo.equals("21040501017523")){ his = "1"; }else{ //呼叫中心,以转运项目为主 if("HSMS".equals(projectMain)) { his = hsmsCallLogDAO.selectSernelNo("sernelNo",serialNo); } else { //其它,以运维项目为主 his = callLogDAO.selectSernelNo("sernelNo",serialNo); log.info("ITSM his查询:"+his); } } dataStr = "{\"cmd\":\"loginres\", \"error\":\"0\", \"timestamp\":\"" + (System.currentTimeMillis() / 1000) + "\"}"; } System.out.println("redate>>"+dataStr+"his"+his); output.write(dataToBytes(dataStr)); } } } catch (Exception e) { e.printStackTrace(); System.out.println("服务器EOFException异常"); } finally { if (output != null) { try { output.close(); } catch (Exception e) { output = null; } } if (input != null) { try { input.close(); } catch (Exception e) { input = null; } } if (sc != null) { try { sc.close(); } catch (Exception e) { sc = null; } } } } /** * 将发送内容转换为byte数组 * 需要注意:byte前面四位需要描述整个发送内容的长度(dataStr) * * @param dataStr */ public byte[] dataToBytes(String dataStr) { //将int转换为byte数组 byte[] lengthBytes = int2Bytes(dataStr.length()); //将string转换为byte数组 byte[] dataBytes = dataStr.getBytes(); //最终发送的byte数组,int byte数组长度和string byte数组长度相加得到最终长度 byte[] lengthAndDataBytes = new byte[(lengthBytes.length + dataBytes.length)]; //将int byte数组四位加入到新byte数组中 lengthAndDataBytes[0] = lengthBytes[0]; lengthAndDataBytes[1] = lengthBytes[1]; lengthAndDataBytes[2] = lengthBytes[2]; lengthAndDataBytes[3] = lengthBytes[3]; //将string byte数组四位加入到新byte数组中 for (int index = 4; index < lengthAndDataBytes.length; index++) { lengthAndDataBytes[index] = dataBytes[index - 4]; } return lengthAndDataBytes; } /** * byte数组转换为int * * @param bytes * @return */ public static int bytes2Int(byte[] bytes) { //如果不与0xff进行按位与操作,转换结果将出错,有兴趣的同学可以试一下。 int int1 = bytes[0] & 0xff; int int2 = (bytes[1] & 0xff) << 8; int int3 = (bytes[2] & 0xff) << 16; int int4 = (bytes[3] & 0xff) << 24; return int1 | int2 | int3 | int4; } /** * int 转换为 byte数组 * * @param integer * @return */ public static byte[] int2Bytes(int integer) { byte[] bytes = new byte[4]; bytes[3] = (byte) ((byte) integer >> 24); bytes[2] = (byte) ((byte) integer >> 16); bytes[1] = (byte) ((byte) integer >> 8); bytes[0] = (byte) integer; return bytes; } /** * 发送弹屏socket,将电话号码返回过去 * 201为通话中 * 202为振铃 * */ public void sendSocket(JSONObject jsonObject,String his) { try { putPhoneMap("phone_num_port",his); if (jsonObject != null && jsonObject.containsKey("calldirection") && jsonObject.get("calldirection").toString().equals("1") || jsonObject.get("calldirection").toString() == "1") { if (jsonObject.containsKey("phonestate") && jsonObject.get("phonestate").toString().equals("3") || jsonObject.get("phonestate").toString() == "3") { if (jsonObject.containsKey("channel")&&jsonObject.get("channel").toString()!=null) { Map rMap = new HashMap(); //TODO 增加返回 uuid 并且保存通话记录数据 if (jsonObject.containsKey("dtmfa") && jsonObject.get("dtmfa").toString() != null && !jsonObject.optString("dtmfa").toString().equals("")){ rMap.put("phone", jsonObject.opt("dtmfa")); rMap.put("status", 201); rMap.put("callId",jsonObject.optString("uuid")); // //TODO 先保存通话记录,打通了的走这里 log.info("先保存通话记录2:"+jsonObject.toString()); CallLogEntity callLogEntity = getCallLog(jsonObject); if(StringUtils.isNotEmpty(jsonObject.optString("rstime"))) { callLogEntity.setResponseTime(DateUtil2.parseDateTime(jsonObject.optString("rstime"))); } saveItsmCallRecord(callLogEntity,jsonObject.optString("uuid")); saveHsmsCallLog(callLogEntity,jsonObject.optString("uuid")); }else { rMap.put("phone",""); rMap.put("status", 201); } ObjectMapper objectMapper = new ObjectMapper(); String json = objectMapper.writeValueAsString(rMap); PhoneWebSocket.sendMessage(phoneMap.get(his+jsonObject.get("channel").toString()),json); } } else if (jsonObject.containsKey("phonestate") && jsonObject.get("phonestate").toString().equals("4") || jsonObject.get("phonestate").toString() == "4") { Map rMap = new HashMap(); rMap.put("msg","来电话啦!" ); rMap.put("status", 202); ObjectMapper objectMapper = new ObjectMapper(); String json = objectMapper.writeValueAsString(rMap); if (jsonObject.containsKey("channel")&&jsonObject.get("channel").toString()!=null){ PhoneWebSocket.sendMessage(phoneMap.get(his+jsonObject.get("channel").toString()),json); } } } } catch (Exception e) { e.printStackTrace(); } } private void handleCallLog(JSONObject jsonObject,String his){ if(jsonObject.get("phonestate").toString().equals("4")){ // 主叫号码不等于空字符串,并且不等于座机号(通道号获得),即可判断为来电号码 if(!jsonObject.get("dtmfa").toString().equals("") && !jsonObject.get("dtmfa").toString().equals(phoneMap.get(his+jsonObject.get("channel").toString()))){ phoneLog.put(his+jsonObject.get("channel").toString(),getCallLog(jsonObject)); } //如果phonestate 为零则表示话机为空闲状态,则保存通话记录 }else if(jsonObject.get("phonestate").toString().equals("0")){ CallLogEntity callLog = phoneLog.get(his+jsonObject.get("channel").toString()); if (callLog!=null){ if (jsonObject.containsKey("dtmfa")&& StringUtils.isNotEmpty(jsonObject.get("dtmfa").toString())&&!jsonObject.get("dtmfa").toString().equals("")&&!jsonObject.get("dtmfa").toString().equals(" ")){ // 查询科室信息 并赋值 getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog); }else { callLog.setCallDept("暂无"); } callLog.setHosId(Integer.parseInt(his)); // callLogDAO.save(callLog); log.info("先保存通话记录1:"+jsonObject.toString()); //TODO 先保存通话记录,打不通的走这里 if(StringUtils.isNotEmpty(jsonObject.optString("rstime"))) { callLog.setResponseTime(DateUtil2.parseDateTime(jsonObject.optString("rstime"))); } saveItsmCallRecord(callLog,jsonObject.optString("uuid")); saveHsmsCallLog(callLog,jsonObject.optString("uuid")); } }else if(jsonObject.get("phonestate").toString().equals("1")){ phoneLog.put(his+jsonObject.get("channel").toString(),null); }else if(jsonObject.get("phonestate").toString().equals("3")){ phoneLog.put(his+jsonObject.get("channel").toString(),null); } } /** * 将json转换为实体 * 默认 已接未接为 未接 * 默认 通话类型为 呼入 * 默认 时间为 当前时间。 * @param jsonObject * @return */ private CallLogEntity getCallLog(JSONObject jsonObject){ CallLogEntity callLog = new CallLogEntity(); if (jsonObject.containsKey("channel")){ callLog.setPhyIDA(jsonObject.get("channel").toString()); } if (jsonObject.containsKey("dtmfa")) { callLog.setdTMFA(jsonObject.get("dtmfa").toString()); getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog); } if (jsonObject.containsKey("dtmfb")){ callLog.setdTMFB(jsonObject.get("dtmfb").toString()); } callLog.setResponseTime(new Date()); callLog.setCallState(0); callLog.setCallType(1); return callLog; } public void putPhoneMap(String key,String his){ // List dictionaryEntityList = dictionaryDAO.selectDictionaryByKey(key); List hospitalConfigList = hospitalConfigDAO.getHospitalConfigList(key,his); if (hospitalConfigList!=null&&hospitalConfigList.size()>0){ for (HospitalConfig hospitalConfig:hospitalConfigList){ phoneMap.put(his+hospitalConfig.getValue2(),hospitalConfig.getValue()); } } } /** * 保存通话记录 * @param message */ public void saveCallLog(String message,String his){ log.info(message); //TODO 修改通话记录数据;DTMFA DTMFB rstime if (JsonUtil.toJSONObject(message).containsKey("recordList")) { List list = JsonUtil.toJSONObject(message).optJSONArray("recordList"); if (list!=null&&list.size()>0){ JSONObject jsonObject = JsonUtil.toJSONObject(list.get(0).toString()); CallLogEntity callLog = new CallLogEntity(); if (jsonObject.containsKey("phyIDA")){ callLog.setPhyIDA(jsonObject.get("phyIDA").toString()); } if (jsonObject.containsKey("DTMFA")){ callLog.setdTMFA(jsonObject.get("DTMFA").toString()); getDeptByDTMFA(jsonObject.get("DTMFA").toString(), callLog); } if (jsonObject.containsKey("DTMFB")){ callLog.setdTMFB(jsonObject.get("DTMFB").toString()); } if (jsonObject.containsKey("rstime")){ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try { callLog.setResponseTime(sdf.parse(jsonObject.get("rstime").toString())); } catch (ParseException e) { e.printStackTrace(); } } if (jsonObject.containsKey("longtime")){ callLog.setLongTime(jsonObject.get("longtime").toString()); } if (jsonObject.containsKey("path")){ callLog.setPath(jsonObject.get("path").toString()); } if(callLog.getPhyIDA() != null){ // 判断为呼出(主叫号码等于分机号(通道号)为呼出) if(callLog.getdTMFA() != null &&phoneMap!=null&&phoneMap.size()>0&& phoneMap.get(his+callLog.getPhyIDA()).equals(callLog.getdTMFA())){ callLog.setCallType(0); // callLog.setCallState(1); // 判断为呼入(被叫号码等于分机号(通道号)为呼入) }else if(callLog.getdTMFB()!= null &&phoneMap!=null&&phoneMap.size()>0&& phoneMap.get(his+callLog.getPhyIDA()).equals(callLog.getdTMFB())){ callLog.setCallType(1); // callLog.setCallState(1); }else{//未知 callLog.setCallType(2); } // callLog.setCallState(1); } //是否接电话,1接了,0未接 if (jsonObject.get("rstime") != null && StringUtils.isNotEmpty(jsonObject.get("rstime").toString())){ callLog.setCallState(1); }else { callLog.setCallState(0); } callLog.setHosId(Integer.parseInt(his)); // callLogDAO.save(callLog); //TODO 根据配置文件开关,是否保存到ITSM的通话记录数据 saveItsmCallRecord(callLog,null); saveHsmsCallLog(callLog,null); } } } private void getDeptByDTMFA(String phone,CallLogEntity callLog){ try { if (StringUtils.isNotBlank(phone)){ //给来电科室赋值 String deptName = ""; Long deptId = null; if("HSMS".equals(projectMain)) { HsmsDepartmentEntity dept = hsmsDepartmentDAO.getDeptByPhone(phone); deptName = dept.getDept(); deptId = dept.getId(); } else { //其它,以运维项目为主 DepartmentEntity dept = departmentDAO.getDeptByPhone(phone); deptName = dept.getDept(); deptId = dept.getId(); } if (StringUtils.isNotBlank(deptName)) { callLog.setCallDept(deptName); } else { callLog.setCallDept("暂无"); } if (deptId != null) { callLog.setCallDeptId(deptId); } } else { callLog.setCallDept("暂无"); } }catch (Exception e){ e.printStackTrace(); } } /** * 根据配置文件开关,是否保存到ITSM的通话记录数据 */ private void saveItsmCallRecord(CallLogEntity callLog,String uuid) { try { if("ITSM".equals(project) || "ALL".equals(project)) { CallRecordEntity recordEntity = null; log.info("开始保存ITSM通话记录"); String hosId = callLogDAO.selectSernelNo("sernelNo",serialNo); //TODO 根据uuid区分是:新增通话记录,还是修改附件的通话记录 if(StringUtils.isNotEmpty(uuid)) { //新增 Long id = callRecordDAO.selectIdByUuid(uuid); if(id == null) { recordEntity = new CallRecordEntity(); recordEntity.setVersion(0); recordEntity.setCallAccept(uuid); recordEntity.setCallerIdNumber(callLog.getdTMFA()); recordEntity.setDestinationNumber(callLog.getdTMFB()); recordEntity.setCreatedTime(callLog.getResponseTime()); recordEntity.setIsAnswered(callLog.getCallState()); recordEntity.setCallTime("0"); recordEntity.setOverTime(new Date()); recordEntity.setBranch(StringUtils.isEmpty(hosId)? null : Long.valueOf(hosId)); if(callLog.getCallType() != null && "0".equals(callLog.getCallType().toString())) { recordEntity.setCallType("1"); }else if(callLog.getCallType() != null && "1".equals(callLog.getCallType().toString())) { recordEntity.setCallType("2"); } recordEntity.setGateWay(callLog.getPhyIDA()); callRecordDAO.save(recordEntity); log.info("新增ITSM临时通话记录完成"); }else { log.info("已有ITSM临时通话记录,忽略此条uuid:"+uuid); } }else { //修改 log.info("开始匹配ITSM临时通话记录"); recordEntity = callRecordDAO.selectByParams(callLog.getdTMFA(), callLog.getdTMFB(), callLog.getResponseTime()); //TODO 根据【主叫、被叫、起始时间】判断是否查询到对应数据,来绑定附件,如果未匹配到,直接新增 String newUUID = null; if(recordEntity != null) { log.info("匹配到ITSM临时通话记录!开始修改"); newUUID = recordEntity.getCallAccept(); }else { log.info("未匹配ITSM到临时通话记录!开始新增"); recordEntity = new CallRecordEntity(); newUUID = UUID.randomUUID().toString(); } recordEntity.setCallAccept(newUUID); recordEntity.setVersion(0); recordEntity.setCallerIdNumber(callLog.getdTMFA()); recordEntity.setDestinationNumber(callLog.getdTMFB()); recordEntity.setCreatedTime(callLog.getResponseTime()); recordEntity.setCallTime(callLog.getLongTime()); recordEntity.setRecordingFileName(callLog.getPath()); recordEntity.setIsAnswered(callLog.getCallState()); //处理结束时间 if(callLog.getResponseTime() != null && callLog.getLongTime() != null) { Date overTime = DateUtil2.addSeconds(callLog.getResponseTime(), Integer.valueOf(callLog.getLongTime())); recordEntity.setOverTime(overTime); } //院区 recordEntity.setBranch(StringUtils.isEmpty(hosId)? null : Long.valueOf(hosId)); //呼入呼出,其它 if(callLog.getCallType() != null) { if("1".equals(callLog.getCallType().toString())) { recordEntity.setCallType("2"); }else if("2".equals(callLog.getCallType().toString())) { recordEntity.setCallType("1"); }else { recordEntity.setCallType("3"); } } //处理录音地址 if(callLog.getPath() != null && StringUtils.isNotEmpty(callLog.getPath())) { String newPath = callLog.getPath(); String[] arr = callLog.getPath().split(recordRegex); if (arr.length > 1) { newPath = recordNginxPath + arr[1]; } recordEntity.setRecordingFileName(newPath); }else { log.info("ITSM callLog 保存没有路径path"); return; } callRecordDAO.save(recordEntity); log.info("ITSM附件通话记录保存完成"); } log.info("保存ITSM通话记录完成:"+recordEntity.getCallAccept()); System.out.println("保存ITSM通话记录完成:"+recordEntity.getCallAccept()); } } catch (Exception ex) { ex.printStackTrace(); } } private void saveHsmsCallLog(CallLogEntity callLog,String uuid) { log.info("开始保存HSMS通话记录"); log.info(callLog); HsmsCallLogEntity hsmsCallLog = null; try { if("HSMS".equals(project) || "ALL".equals(project)) { String hosId = hsmsCallLogDAO.selectSernelNo("sernelNo",serialNo); if(StringUtils.isNotEmpty(uuid)) { Long id = hsmsCallLogDAO.selectIdByUuid(uuid); if(id == null) { hsmsCallLog = new HsmsCallLogEntity(); copyCallLog(callLog,hsmsCallLog); hsmsCallLog.setVersion(0); hsmsCallLog.setCallAccept(uuid); hsmsCallLog.setHosId(StringUtils.isEmpty(hosId)? null : Integer.valueOf(hosId)); hsmsCallLogDAO.save(hsmsCallLog); log.info("新增HSMS临时通话记录完成"); }else { log.info("已有HSMS临时通话记录,忽略此条uuid:"+uuid); } }else { log.info("开始匹配HSMS临时通话记录"); hsmsCallLog = hsmsCallLogDAO.selectByParams(callLog.getdTMFA(), callLog.getdTMFB(), callLog.getResponseTime()); if(hsmsCallLog == null) { //新增 log.info("HSMS未匹配到,开始新增"); hsmsCallLog = new HsmsCallLogEntity(); callLog.setVersion(0); hsmsCallLog.setCallAccept(UUID.randomUUID().toString()); } copyCallLog(callLog,hsmsCallLog); hsmsCallLog.setHosId(StringUtils.isEmpty(hosId)? null : Integer.valueOf(hosId)); if(callLog.getPath() != null && StringUtils.isNotEmpty(callLog.getPath())) { // String newPath = callLog.getPath(); // String[] arr = callLog.getPath().split(recordRegex); // if (arr.length > 1) { // newPath = recordNginxPath + arr[1]; // } // hsmsCallLog.setPath(newPath); }else { log.info("HSMS callLog 保存没有路径path"); return; } hsmsCallLogDAO.save(hsmsCallLog); log.info("保存HSMS通话记录完成!"); } log.info("保存HSMS通话记录完成:"+hsmsCallLog.getCallAccept()); } } catch (Exception ex) { ex.printStackTrace(); } } private HsmsCallLogEntity copyCallLog(CallLogEntity callLog,HsmsCallLogEntity hsmsCallLog) { hsmsCallLog.setVersion(callLog.getVersion()); hsmsCallLog.setHosId(callLog.getHosId()); hsmsCallLog.setCallDept(callLog.getCallDept()); hsmsCallLog.setCallDeptId(callLog.getCallDeptId()); hsmsCallLog.setPhyIDA(callLog.getPhyIDA()); hsmsCallLog.setdTMFA(callLog.getdTMFA()); hsmsCallLog.setdTMFB(callLog.getdTMFB()); hsmsCallLog.setResponseTime(callLog.getResponseTime()); hsmsCallLog.setLongTime(callLog.getLongTime()); hsmsCallLog.setPath(callLog.getPath()); hsmsCallLog.setCallType(callLog.getCallType()); hsmsCallLog.setCallState(callLog.getCallState()); return hsmsCallLog; } public static void main(String[] args) { System.out.println(System.currentTimeMillis() / 1000); } }