ExceptionsLog
Hibernate常见错误
Hibernate常见错误1.错误:object references an unsaved transient instance - save the transient instance before flushing:com.xxxx.bean.java.Sysblog; nested exception isorg.hibernate.TransientObjectException: object references an unsavedtransient instance - save the transient instance before flushing:com.xxx.bean.java.Sysblog解决方法:没有可预期的实例,当然就要实例化对象咯2.错误:Exceptionobject references an unsaved transient instance - save the transient instance before flushing:src.persistent.Product......解决方法:原因没有为某对象进行set设置,如上边的这个就是某对象没有调用setProduct 3.错误:Illegal attempt to associate a collection with two open sessions......解决方法:(hibernate的session提供了一级缓存,每个session,对同一个id进行两次load,不会发送两条sql给数据库,但是session关闭的时候,一级缓存就失效了。
sysblogarticle.setAmount(new Long(sysblogcommentService.selcom(sysblogarticle.getArticleid().toString()).size()));//通过文章id获取文章评论数sysblogarticle.setSysblogcomments(null);//关键sysblogarticleService.saveOrUpdate(sysblogarticle);//将文章中评论条数修改参考:[url=/blog/forum/17913][color=#0000ff]http://javaflas /blog/forum/17913[/color][/url]4.错误:Hbm映射文件都生成好后,改数据库增加了默认值(如:将某个字段值设为1),结果在插入的时候,数据库那边没有反应。
使用OllyDbg从零开始Cracking 第三十二章-OEP寻踪
第三十二章-OEP寻踪在上一章中我们提到了OEP(Original EntryPoint)的概念,也就是应用程序原本要执行的第一行代码,OEP %99的情况位于第一个区段中(本章中有一个例子,OEP就不在第一个区段,我是特意举的这个例子,嘿嘿)。
我们知道当到达OEP后,各个区段在内存中的分布跟原始程序很接近,这个时候我们就可以尝试将其转储到(dump)文件中,完成程序的重建工作(PS:脱壳)。
通常脱壳的基本步骤如下:1:寻找OEP2:转储(PS:传说中的dump)3:修复IAT(修复导入表)4:检查目标程序是否存在AntiDump等阻止程序被转储的保护措施,并尝试修复这些问题。
以上是脱壳的经典步骤,可能具体到不同的壳的话会有细微的差别。
本章我们主要介绍定位OEP的方法。
很多时候我们遇到的壳会想方设法的隐藏原程序的OEP,要定位OEP的话就需要我们尝试各种各样的方法了。
首先我们来看看上一章CRACKME UPX,然后再来看其他的壳。
1)搜索JMP或者CALL指令的机器码(即一步直达法,只适用于少数壳,包括UPX,ASPACK壳)对于一些简单的壳可以用这种方式来定位OEP,但是对于像AsProtect这类强壳(PS:AsProtect在04年算是强壳了,嘿嘿)就不适用了,我们可以直接搜索长跳转JMP(0E9)或者CALL(0E8)这类长转移的机器码,一般情况下(理想情况)壳在解密完原程序各个区段以后,需要一个长JMP或者CALL跳转到原程序代码段中的OEP处开始执行原程序代码。
下面我们将上一章中加了UPX壳的那个CrueHead的CrackMe加载到OD中:这里我们按CTRL+B组合键搜索一下JMP的机器码E9,看看有没有这样一个JMP跳转到原程序的代码段。
多按几次CTRL+L。
搜索到了几处,但都不是跳往第一个区段的,直到定位到如下位置:这个JMP是跳转到第一个区段的,我们在这条指令处设置一个断点,断在这里时,我们按F7键就可以单步跳转到OEP处。
NETLOG日志的使用以及设置文件大小和数量限制
NETLOG⽇志的使⽤以及设置⽂件⼤⼩和数量限制NET LOG⽇志的使⽤包括log4net和nlog1、新建控制台项⽬ConsoleLog,使⽤Nuget程序包管理器,添加log4net和nlog2、配置log4neta、log4net⽇志设置设置保存中的⽂件夹和指定⽂件数量和⼤⼩b、App.config中添加⽇志的配置信息c、根据App.config中添加⽇志的配置信息初始化log4net⽇志d、使⽤log4net写⽇志App.config⽂件中添加log4net的配置信息,本⽂只配置了⽇志输出的⽂件,并对⽂件的数量做了控制,如下:<?xml version="1.0" encoding="utf-8" ?><configuration><configSections><section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /></configSections><log4net><appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"><file value="Log\Log.txt" /><appendToFile value="true" /><rollingStyle value="Size" /><maxSizeRollBackups value="2" /><maximumFileSize value="1KB" /><staticLogFileName value="true" /><layout type="yout.PatternLayout"><!--<param name="ConversionPattern" value="%-5p %d [%c] [%l] %m%n" />--><conversionPattern value="%-5level %date [%thread] - %message %newline" /></layout></appender><appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender"><layout type="yout.PatternLayout"><conversionPattern value="%date [%thread] %-5level %logger - %message%newline"/></layout></appender><!--⽇志输出到Console--><appender name="ColoredConsoleAppender" type="log4net.Appender.ColoredConsoleAppender"><mapping><level value="ERROR"/><foreColor value="White"/><backColor value="Red,HighIntensity"/></mapping><mapping><level value="DEBUG"/><backColor value="Green"/></mapping><mapping><level value="Info"/><backColor value="Yellow"/></mapping><layout type="yout.PatternLayout"><conversionPattern value="%date [%thread] %-5level %logger - %message%newline"/></layout><filter type="log4net.Filter.LevelRangeFilter"><param name="LevelMin" value="Debug"/><param name="LevelMax" value="Fatal"/></filter></appender><root><!--level all>fatal>error>warn>debug>info>off />--><!--<level value="warn" /> 表⽰只有warn以上的fatal,error等级才会输出⽇志,warn debug info等级不会输出⽇志all 所有等级都会输出⽇志off 所有等级/>--><level value="all" /><appender-ref ref="RollingLogFileAppender" /><!--<appender-ref ref="ColoredConsoleAppender" />--><appender-ref ref="ConsoleAppender" /></root></log4net><startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /></startup></configuration>使⽤log4net 写⽇志如下:using System;using System.Threading;namespace ConsoleLog{class Program{static void Main(string[] args){Console.WriteLine("测试⽇志");//Console.WriteLine("log4net 测试⽇志");// 注意////log4net⽇志设置设置保存中的⽂件夹和指定⽂件数量和⼤⼩// 1、App.config中添加⽇志的配置信息// 2、根据App.config中添加⽇志的配置信息初始化log4net⽇志// 3、使⽤log4net写⽇志//#region log4net//log4net.Config.XmlConfigurator.Configure();////上⾯的这句话表⽰从App.config中添加⽇志的配置信息初始化log4net⽇志////或者也可以在项⽬的Properties中的AssemblyInfo.cs添加下⾯⼀句话////[assembly: log4net.Config.XmlConfigurator(ConfigFileExtension =".config",Watch =true)]////上⾯2种⽅式都是表⽰从App.config中添加⽇志的配置信息初始化log4net⽇志//log4net.ILog log = log4net.LogManager.GetLogger(typeof(TestLog4net));while (true){log.Fatal("Fatal log4net 测试⽇志");log.Error("Error log4net 测试⽇志");log.Warn("Warn log4net 测试⽇志");log.Debug("Debug log4net 测试⽇志");("Info log4net 测试⽇志");Thread.Sleep(TimeSpan.FromSeconds(1));}#endregionConsole.ReadLine();}}}3、配置nloga、nlog⽇志设置保存中的⽂件夹和指定⽂件数量和⼤⼩b、新建nlog.config⽂件并添加⽇志的配置信息,nlog.config⽂件属性设置,复制到输出⽬录:始终复制,⽣成操作:内容c、使⽤nlog写⽇志nlog.config⽂件中添加lnlog的配置信息,本⽂只配置了⽇志输出的⽂件和彩⾊控制,并对⽂件的数量做了控制,如下:<?xml version="1.0" encoding="utf-8"?><nlog xmlns="/schemas/NLog.xsd" xmlns:xsi="/2001/XMLSchema-instance"autoReload="true" throwExceptions="false"internalLogLevel="Warn" internalLogFile="${basedir}/logs/NlogRecords.log"><!--Nlog内部⽇志记录为Off关闭。
BI学习过程中遇到的问题
1.在WIN7下安装ORACLE10G,到最后创建实例的时候会出现ORA_12546错误,提示权限拒绝。
解决办法:打开安装包路径下的\stage\prereq\db\refhost.xml加入<!--Microsoft Windows 7--><OPERATING_SYSTEM><VERSION VALUE="6.1"/></OPERATING_SYSTEM>然后打开安装路径下修改\install\oraparam.ini,加入6.1,Windows=5.0,5.1,5.2,6.0,6.1,最后重新安装成功。
2.在启动Informaticapowercenter服务的时候,发现服务启动几秒钟之后服务又自动关闭了。
原因:首先是找到C:\Informatica\PowerCenter8.6.1\server\tomcat\logs\exceptions.log的日志,发现以下错误:Caused by: java.sql.SQLException: [informatica][SQLServer JDBC Driver]Error establishing socket to host and port: HTF-DUANXIN:1433. Reason: Connection refused: connectrmatica.jdbc.base.BaseExceptions.createException(Unknown Source)rmatica.jdbc.base.BaseExceptions.getException(Unknown Source)……这个Informatica服务竟然是连接的MSSQL的数据库的,好吧,让我们来看看这个MSSQL 的数据库为什么没有起来。
打开服务管理界面,找到SQL SERVER服务,启动该服务。
日志规范(初稿)
日志规范一.什么时候打日志原则:一般来说日志分为两种:业务日志和异常日志,使用日志我们希望能达到以下目标:1.对程序运行情况的记录和监控;2.在必要时可详细了解程序内部的运行状态;3.对系统性能的影响尽量小通常情况下在程序日志里记录一些比较有意义的状态数据:程序启动,退出的时间点;程序运行消耗时间;耗时程序的执行进度;重要变量的状态变化。
除此之外,在公共的日志里规避打印程序的调试或者提示信息。
日志等级:1.成品阶段:我的代码是INFO 等级,第三方库是WARN。
2.测试、集成阶段:我的代码是DEBUG 等级,第三方库是WARN(或者如果需要的话是INFO)。
3.开发阶段:任何有意义的信息。
注意:不建议使用TRACE/FINEST 等级二.怎么打日志(日志最佳实践)编码规范:1.在一个对象中通常只使用一个Logger对象,Logger应该是static final的,只有在少数需要在构造函数中传递logger的情况下才使用privatefinal。
static final logger_LOG=loggerFactory.getLogger(Main.class);2.输出Exceptions的全部Throwable信息,因为logger.error(msg)和logger.error(msg,e.getMessage())这样的日志输出方法会丢失掉最重要的StackTrace信息。
例子:void foo(){try { // do something... }catch ( Exception e ){_LOG.error(e.getMessage()); // 错误_LOG.error("Bad things : ",e.getMessage()); // 错误_LOG.error("Bad things : ",e); // 正确} }3.不允许记录日志后又抛出异常,因为这样会多次记录日志,只允许记录一次日志。
常用大数据词汇中英文对照表
常用大数据词汇中英文对照表A聚合(Aggregation)–搜索、合并、显示数据的过程算法(Algorithms)–可以完成某种数据分析的数学公式分析法(Analytics)–用于发现数据的内在涵义异常检测(Anomaly detection)–在数据集中搜索与预期模式或行为不匹配的数据项。
除了“Anomalies”,用来表示异常的词有以下几种:outliers, exceptions, surprises, contaminants.他们通常可提供关键的可执行信息匿名化(Anonymization)–使数据匿名,即移除所有与个人隐私相关的数据应用(Application)–实现某种特定功能的计算机软件人工智能(Artificial Intelligence)–研发智能机器和智能软件,这些智能设备能够感知周遭的环境,并根据要求作出相应的反应,甚至能自我学习B行为分析法(Behavioural Analytics)–这种分析法是根据用户的行为如“怎么做”,“为什么这么做”,以及“做了什么”来得出结论,而不是仅仅针对人物和时间的一门分析学科,它着眼于数据中的人性化模式大数据科学家(Big Data Scientist)–能够设计大数据算法使得大数据变得有用的人大数据创业公司(Big data startup)–指研发最新大数据技术的新兴公司生物测定术(Biometrics)–根据个人的特征进行身份识别B字节(BB: Brontobytes)–约等于1000 YB(Yottabytes),相当于未来数字化宇宙的大小。
1 B字节包含了27个0!商业智能(Business Intelligence)–是一系列理论、方法学和过程,使得数据更容易被理解C分类分析(Classification analysis)–从数据中获得重要的相关性信息的系统化过程;这类数据也被称为元数据(meta data),是描述数据的数据云计算(Cloud computing)–构建在网络上的分布式计算系统,数据是存储于机房外的(即云端) 聚类分析(Clustering analysis)–它是将相似的对象聚合在一起,每类相似的对象组合成一个聚类(也叫作簇)的过程。
中英对照海商法术语
84
good seamanship
良好船艺
85
force majeure
不可抗力
86
special drawing rights, SDR
特别提款权
87
package/unitlimitation of liability
单位责任限制
88
non-contractual claim
非合同请求/非合同之诉
预借提单
119
long form B/L
全式提单
120
short form B/L
简式提单
121
switch B/L
转换提单
122
on deck B/L
舱面货提单
123
stowed on deck
装于舱面上
124
parcel B/L
包裹提单
125
minimum freight B/L
最低运费提单
126
船舶物权Real Rights in Ships
1
ownership of ships
船舶所有权
2
vessel under construction
建造中船舶
3
mortgage of ship
船舶抵押权
4
maritime lien
船舶优先权
5
accessories
附属利益
6
law costs due to the state
双方互有责任碰撞条款
157
local clause
地区条款
158
invalid clause
无效条款
159
reference clause
物流行业术语的英文翻译
物流行业术语的英文翻译Gross Registered Tonnage (GRT) 注册(容积)总吨Net Registered Tonnage (NRT) 注册(容积)净吨Deadweight Tonnage (All Told) (DWT or D.W.A.T) 总载重吨位(量)Gross Dead Weight Tonnage 总载重吨位Dead Weight Cargo Tonnage (DWCT) 净载重吨Light Displacement 轻排水量Load (Loaded)Displacement 满载排水量Actual Displacement 实际排水量Over weight surcharge 超重附加费Bunker Adjustment Factor (Surcharge) (BAS or BS) 燃油附加费Port Surcharge 港口附加费Port Congestion Surcharge 港口拥挤附加费Currency Adjustment Factor (CAF) 货币贬值附加费Deviation surcharge 绕航附加费Direct Additional 直航附加费Additional for Optional Destination 选卸港附加费Additional for Alteration of Destination 变更卸货港附加费Fumigation Charge 熏蒸费Bill of Lading 提单On Board (Shipped) B/L 已装船提单Received for shipment B/L 备运(收妥待运)提单Named B/L 记名提单Bearer B/L 不记名提单Order B/L 指示提单Blank Endorsement 空白备书Clean B/L 清洁提单In apparent good order and condition 外表状况良好Unclean ( Foul, Dirty) B/L 不清洁提单Direct B/L 直航提单Transshipment B/L 转船提单Through B/L 联运提单Multi-modal (Inter-modal, combined) transport B/L 多式联运提单Long Form B/L 全式提单Short Form B/L 简式提单Anti-dated B/L 倒签提单Advanced B/L 预借提单Stale B/L 过期提单On Deck B/L 甲板货提单Charter Party B/L 租约项下提单House B/L 运输代理行提单Seaworthiness 船舶适航Charter Party ( C/P) 租船合同(租约)Voyage charter party 航次租船合同Time Charter Party 定期租船合同Bareboat (demise) Charter Party 光船租船合同Common carrier 公共承运人Private carrier 私人承运人Single trip C/P 单航次租船合同Consecutive single trip C/P 连续单航次租船合同Return trip C/P 往返航次租船合同Contract of Affreightment (COA) 包运合同Voyage Charter Party on Time Basis 航次期租合同Fixture Note 租船确认书Free In (FI) 船方不负责装费Free Out (FO) 船方不负责卸费Free In and Out (FIO) 船方不负责装卸费Free In and Out ,Stowed and Trimmed (FIOST) 船方不负责装卸、理舱和平舱费Declaration of ship´s Deadweight Tonnage of Cargo 宣载通知书Dunnage and separations 垫舱和隔舱物料Lump-sum freight 整船包价运费Weather working days (W.W.D) 良好天气工作日Notice of Readiness (NOR) 船舶准备就绪通知书Idle formality 例行手续Laytime statement 装卸时间计算表Damage for Detention 延期损失Customary Quick Despatch (CQD) 习惯快速装运International Maritime Dangerous Goods Code (IMDG) 国际海上危险品货物规则(国际危规) Booking Note 托运单(定舱委托书)Shipping Order (S/O) 装货单 (下货纸)Mate´s Receipt 收货单Loading List 装货清单Cargo Manifest 载货清单(货物舱单)Stowage Plan 货物积载计划Dangerous Cargo List 危险品清单Stowage Factor 积载因素(系数)Inward cargo 进港货Outward cargo 出港货Container yard (CY) 集装箱堆场Container Freight Station ( CFS) 集装箱货运站Container Load Plan 集装箱装箱单Conventional Container Ship 集装箱两用船Semi-container Ship 半集装箱船Full Container Ship 全集装箱船Full Container Load (FCL) 整箱货Less Container Load (LCL) 拼箱货Delivery Order (D/O) 提货单(小提单)Dock receipt 场站收据Twenty equivalent unit (TEU) 二十尺集装箱换算单位Equipment Interchange Receipt ( EIR) 集装箱设备交接单Demurrage 滞期费Crew List 船员名册Log book 航行日志Liner transport 班轮运输Tramp transport 不定期(租船)运输Minimum Freight 工最低运费Maximum Freight 最高运费Accomplish a Bill of Lading (to) 付单提货Ad valorem freight 从价运费Address commission (Addcomm) 回扣佣金Adjustment 海损理算Average adjuster 海损理算师Average bond 海损分摊担保书Average guarantee 海损担保书Act of God 天灾All in rate 总运费率Annual survey 年度检验All purposes (A.P) 全部装卸时间All time saved (a.t.s) 节省的全部时间Always afloat 始终保持浮泊Anchorage 锚地Anchorage dues 锚泊费Arbitration award 仲裁裁决Arbitrator 仲裁员Arrest a ship 扣押船舶Area differential 地区差价Addendum (to a charter party) ( 租船合同)附件Apron 码头前沿Bale or bale capacity 货舱包装容积Back (return) load 回程货Back to back charter 转租合同Backfreight 回程运费Ballast (to) 空载行驶Barge 驳船Barratry 船员不轨Barrel handler 桶抓Base cargo (1) 垫底货Base cargo (2) 起运货量Bundle (Bd) 捆(包装单位)Beam 船宽Bearer ( of a B/L) 提单持有人Both ends (Bends) 装卸两港Boatman 缆工Buoy 浮标Bunker escalation clause 燃料涨价条款Derrick 吊杆Fork-lift truck 铲车Boom of a fork-lift truck 铲车臂Both to blame collision clause 互有过失碰撞条款Book space 洽订舱位Bottom 船体Bottom stow cargo 舱底货Bottomry loan 船舶抵押贷款Breakbulk 零担Breakbulk cargo 零担货物Broken stowage 亏舱Brokerage 经纪人佣金Bulk cargo 散装货Bulk carrier 散货船Bulk container 散货集装箱American Bureau of Shipping (A.B.S.) 美国船级社Bureau Veritas (B.V.) 法国船级社Cabotage 沿海运输Canal transit dues 运河通行税Capsize vessel 超宽型船Captain 船长Car carrier 汽车运输船Car container 汽车集装箱Cargo hook 货钩Cargo sharing 货载份额Cargo superintendent 货物配载主管Cargo tank 货箱Cargo tracer 短少货物查询单Cargoworthiness 适货Carryings 运输量Certificate of seaworthiness 适航证书Cesser clause 责任终止条款Chassis 集装箱拖车Claims adjuster 理赔人Classification certificate 船级证书Classification register 船级公告Classification society 船级社Classification survey 船级检验Paramount clause 首要条款Clean (petroleum ) products 精练油Clean the holds (to) 清洁货舱Closing date 截至日Closure of navigation 封航Collapsible flattrack 折叠式板架集装箱Completely knocked down (CKD) 全拆装Compulsory pilotage 强制引航Conference 公会Congestion 拥挤Congestion surcharge 拥挤费Con-ro ship 集装箱/滚装两用船Consecutive voyages 连续航程Consign 托运Consignee 收货人Consignor 发货人Consignment 托运;托运的货物Consolidation (groupage) 拼箱Consortium 联营Constants 常数Container barge 集装箱驳船Container leasing 集装箱租赁Containerization 集装箱化Containerised 已装箱的,已集装箱化的Containership 集装箱船Contamination (of cargo ) 货物污染Contributory value 分摊价值Conveyor belt 传送带Corner casting (fitting) 集装箱(角件) Corner post 集装箱(角柱)Crane 起重机Crawler mounted crane 履带式(轨道式)起重机Custom of the port (COP) 港口惯例Customary assistance 惯常协助Daily running cost 日常营运成本Deadfreight 亏舱费Deadweight (weight) cargo 重量货Deadweight cargo (carrying)capacity 载货量Deaiweight scale 载重图表Deck cargo 甲板货Delivery of cargo (a ship) 交货(交船) Despatch or Despatch money 速遣费Destuff 卸集装箱Det Norske Veritas (D.N.V.) 挪威船级社Deviation 绕航Direct discharge (车船)直卸Direct transshipment 直接转船Dirty(Black) (petroleum) products ( D.P.P.) 原油Disbursements 港口开支Discharging port 卸货港Disponent owner 二船东Dock 船坞Docker 码头工人Door to door 门到门运输Downtime (设备)故障时间Draft (draught) 吃水;水深Draft limitation 吃水限制Dropping outward pilot (D.O.P.) 引航员下船时Dry cargo 干货Dry cargo(freight) container 干货集装箱Dry dock 干船坞Demurrage half despatch (D1/2D) 速遣费为滞期费的一半Efficient deck hand (E.D.H.) 二级水手Elevator 卸货机Enter a ship inwards (outwards) 申请船舶进港(出港) Entrepot 保税货Equipment 设备(常指集装箱)Equipment handover charge 设备使用费预计到达时间Estimated time of completion (ETC) 预计完成时间Estimated time of departure (ETD) 预计离港时间Estimated time of readiness (ETR) 预计准备就绪时间Estimated time of sailing (ETS) 预计航行时间Europallet 欧式托盘Even if used (E.I.U.) 即使使用Excepted period 除外期间Exception 异议Exceptions clause 免责条款Excess landing 溢卸Expiry of laytime 装卸欺瞒Extend suit time 延长诉讼时间Extend a charter 延长租期Extension of a charter 租期延长Extension to suit time 诉讼时间延长Extreme breadth 最大宽度Fairway 航道Feeder service 支线运输服务Feeder ship 支线船Ferry 渡轮First class ship 一级船Flag of convenience (FOC) 方便旗船Floating crane 浮吊Floating dock 浮坞Force majeure 不可抗力Fork-lift truck 铲车Forty foot equivalent unit (FEU) 四十英尺集装箱换算单位Four-way pallet 四边开槽托盘Freeboard 干Freight all kinds (FAK) 包干运费Freight canvasser 揽货员Freight collect (freight payable at destination) 运费到付Freight prepaid 运费预付Freight quotation 运费报价Freight rate (rate of freight) 运费率Freight tariff 运费费率表Freight ton (FT) 运费吨Freight manifest 运费舱单Freighter 货船Fresh water load line 淡水载重线Fridays and holidays excepted (F.H.E.X .) 星期五和节假日除外Full and complete cargo 满舱满载货Full and down 满舱满载Gantry crane 门式起重机(门吊)Gencon 金康航次租船合同General average 共同海损General average act 共同海损行为General average contribution 共同海损分摊General average sacrifice 共同海损牺牲General cargo (generals) 杂货General purpose container 多用途集装箱Geographical rotation 地理顺序Germanischer Lloyd (G.L.) 德国船级社Greenwich Mean Time (G.M.T.) 格林威治时间Grabbing crane 抓斗起重机Grain or grain capacity 散装舱容Gross weight(GW) 毛重Grounding 触底Gunny bag 麻袋Gunny matting 麻垫Hague Rules 海牙规则Hague-Visby Rules 海牙维斯比规则Hamburg Rules 汉堡规则Hand hook 手钩Handymax 杂散货船Handy-sized bulker 小型散货船Harbour 海港Harbour dues 港务费Hatch (hatch cover) 舱盖Hatchway 舱口Head charter (charter party) 主租船合同Head charterer 主租船人Heavy lift 超重货物Heavy lift additional (surcharge) 超重附加费Heavy lift derrick 重型吊杆Heavy weather 恶劣天气Heavy fuel oil (H.F.O) 重油Hire statement 租金单Hold 船舱Home port 船籍港Homogeneous cargo 同种货物Hook 吊钩Hopper 漏斗House Bill of Lading 运输代理行提单Hovercraft 气垫船Husbandry 维修Inland container depot 内陆集装箱Ice-breaker 破冰船Identity of carrier clause 承运人责任条款Idle (船舶、设备)闲置Immediate rebate 直接回扣International Maritime Organization (IMO) 国际海事组织Import entry 进口报关Indemnity 赔偿Inducement 起运量Inducement cargo 起运量货物Inflation adjustment factor ( IAF) 通货膨胀膨胀调整系数Infrastructure (of a port) (港口)基础设施Inherent vice 固有缺陷Institute Warranty Limits (IWL) (伦敦保险人)协会保证航行范围Insufficient packing 包装不足Intaken weight 装运重量International Association of Classification Societies (IACS) 国际船级社协会Inward 进港的Inward cargo 进港货物International Transport Workers’ Federation (ITF) 国际运输工人联合会Itinerary 航海日程表Jettison 抛货Joint service 联合服务Joint survey 联合检验Jumbo derrick 重型吊杆Jurisdiction (Litigation)clause 管辖权条款Knot 航速(节)Laden 满载的Laden draught 满载吃水Landbridge 陆桥Landing charges 卸桥费Landing,storage and delivery 卸货、仓储和送货费Lash 用绳绑扎Lashings 绑扎物Latitude 纬度Lay-by berth 候载停泊区Laydays (laytime) 装卸货时间Laydays canceling (Laycan或L/C) 销约期Laytime saved 节省的装卸时间Laytime statement 装卸时间记录Lay up 搁置不用Leg (of a voyage) 航段Length overall (overall length ,简称LOA) (船舶)总长Letter of indemnity 担保书(函)Lien 留置权Lift-on lift-off (LO-LO) 吊上吊下Lighter 驳船Limitation of liability 责任限制Line (shipping line) 航运公司Liner ( liner ship) 班轮Liner in free out (LIFO) 运费不包括卸货费Liner terms 班轮条件Lloyd´s Register of Shipping 劳埃德船级社Loadline (load line) 载重线Loading hatch 装货口Log abstract 航海日志摘录Long length additional 超长附加费Long ton 长吨Longitude 经度Lump sum charter 整笔运费租赁Maiden voyage 处女航Main deck 主甲板Main port 主要港口Manifest 舱单Maritime declaration of health 航海健康申明书Maritime lien 海事优先权Marks and numbers 唛头Mate´s receipt 大副收据Mean draught 平均吃水Measurement cargo 体积货物Measurement rated cargo 按体积计费的货物Measurement rules 计量规则Merchant (班轮提单)货方Merchant haulage 货方拖运Merchant marine 商船Metric ton 公吨Misdelivery 错误交货Misdescription 错误陈述Mixed cargo 混杂货Mobile crane 移动式起重机More or less (mol.) 增减More or less in charterer’s option (MOLCHOP) 承租人有增减选择权More or less in owner’s option (MOLOO) 船东有增减选择权Mother ship 母船Multideck ship 多层甲板船Multi-purpose cargo ship 多用途船Multi-purpose terminal 多用途场站Narrow the laycan 缩短销约期Net weight 净重New Jason clause 新杰森条款New York Produce Exchange charter-party (NYPE) 纽约土产交易所制定的定期程租船合同格式Newbuilding 新船Nippon kaiji kyokai (NKK) 日本船级社No cure no pay 无效果无报酬Not otherwise enumerated (N.O.E.) 不另列举Nominate a ship 指定船舶进行航行To be nominated (TBN) 指定船舶Non-conference line (Independent line ,Outsider) 非公会成员的航运公司Non-delivery 未交货Non-negotiable bill of lading 不可流通的提单Non-reversible laytime 不可调配使用的装卸时间Non-vessel owning(operating) common carrier (NVOCC) 无船承运人Not always afloat but safe aground 不保持浮泊但安全搁浅Note protest 作海事声明Notice of redelivery 还船通知书Notify party 通知方Ocean (Liner, Sea) waybill 海运单Off hire 停租Oil tanker 油轮On-carriage 货运中转On-carrier 接运承运人One-way pallet 单边槽货盘Open hatch bulk carrier 敞舱口散货船Open rate 优惠费率Open rated cargo 优惠费率货物Open side container 侧开式集装箱Open top container 开顶集装箱Operate a ship 经营船舶Optional cargo 选港货物Ore/bulk/oil carrier 矿石/散货/油轮Out of gauge 超标(货物)Outport 小港Outturn 卸货Outturn report 卸货报告Outward 进港的Overheight cargo 超重货物Overlanded cargo or overlanding 溢卸货Overload 超载Overstow 堆码Overtime (O/T) 加班时间Overtonnaging 吨位过剩Owner´s agents 船东代理人Package limitation 单位(赔偿)责任限制Packing list 装箱单Pallet 托(货)盘Pallet truck 托盘车Palletized 托盘化的Panamax 巴拿马型船Parcel 一包,一票货Performance claim 性能索赔Perishable goods 易腐货物Permanent dunnage 固定垫舱物Per freight ton (P. F. T.) 每运费吨Phosphoric acid carrier 磷酸船Piece weight 单重Pier 突码头Pier to pier 码头至码头运输Piggy –back 驮背运输Pilferage 偷窃Pilot 引航员Pilotage 引航Pilotage dues 引航费Platform 平台Platform flat 平台式集装箱Pooling (班轮公司间分摊货物或运费)分摊制Port 港口,船的左舷Port of refuge 避难港Portable unloader 便携式卸货机Post fixture 订约后期工作Post-entry 追补报关单Preamble (租船合同)前言Pre-entry 预报单Pre-shipment charges 运输前费用Pre-stow 预定积载Private form 自用式租船合同Pro forma charter-party 租约格式Produce carrier 侧开式集装箱Product (products) carrier 液体货运输船Promotional rate 促销费率Prospects 预期Protecting (protective, supervisory) agent 船东利益保护人Protection and indemnity club (association) (P.& I. Club ,Pandi club) 船东保赔协会Protective clauses 保护性条款Protest 海事声明Pumpman 泵工Purchase (吊杆)滑车组Quarter ramp 船尾跳板Quarter-deck 后甲板Quay 码头Quote 报价Ramp 跳板Ramp/hatch cover (跳板)舱口盖Rate 费率 Rate of demurrage 滞期费率Rate of discharge (discharging) 卸货率Rate of freight 运费率Rate of loading 装货Receiving dates 收货期间Recharter 转租Recovery agent 追偿代理Redelivery (redly) 还船Redelivery certificate 还船证书Refrigerated (reefer)container 冷藏集装箱Refrigerated (reefer) ship 冷藏船Register 登记,报到Register (registered) tonnage 登记吨位Registration 登记,报到Registro Italiano Navale (R.I.) 意大利船级社Release a bill of lading 交提单Release cargo 放货Remaining on board (R.O.B.) 船上所有Removable deck 活动甲板Reporting point ( calling-in-point) 报告点Reposition containers 调配集装箱Respondentia loan 船货抵押贷款Return cargo 回程货Return load 回程装载Reversible laytime 可调配的装卸时间Roads (roadstead) 港外锚地Rolling cargo 滚装货物Rolling hatch cover 滚动舱单Roll-on roll-off (Ro-ro) 滚上滚下Roll-on roll-off ship 滚装船Rotation 港序Round voyage 往返航次Round the world (service) (R.T.W.) 全球性服务Run aground 搁浅Running days 连续日Safe aground 安全搁浅Safe berth (s.b) 安全泊位Safe port (S.P) 安全港口Safe working load 安全工作负荷Safety radio-telegraphy certificate 无线电报设备安全证书Said to contain (s.t.c.) (提单术语)内货据称Sail 航行,离港Sailing schedule (card) 船期表Salvage charges 救助费Salvage agreement 救助协议Salve 救助Salvor 救助人Saturdays,Sundays and holidays excepted (S.S.H.E.X.) 星期六、日与节假日除外Saturdays,Sundays and holidays included (S.S.H.I.N.C) 星期六、日与节假日包括在内Scancon 斯堪人航次祖租船合同Scanconbill 斯堪人航次祖租船合同提单Scantlings 构件尺寸Special commodity quotation (SCQ) 特种商品报价Scrap terminal 废料场Single deck ship (s.d.) 单层甲板船Sea waybillSealSecure (to) 固定Segregated ballast tank 分隔压载水舱Self-sustaining ship 自备起重机的集装箱船Self-trimming ship (self-trimmer) 自动平舱船Self-unloader 自卸船Semi-trailer 半脱车Separation 隔票Service contract 服务合同Shears (shear-legs) 人字(起重)架Sheave 滑轮Shelter-deck 遮蔽甲板船Shift 工班Shift (to) 移泊,移位Shifting charges 移泊费Shipbroker 船舶经纪人Shipping 航运,船舶,装运Shipping instructions 装运须知Shipping line 航运公司Ship´s gear 船上起重设备Ship´s rail 船舷Ship´s tackle 船用索具Shipyard 造船厂Shore 货撑Shore gear 岸上设备(岸吊)Short sea 近海Short shipment 短装Shortage 短少Shortlanded cargo 短卸货物Shut out (to) 短装Side door container 侧门集装箱Side-loading trailer 侧向装卸拖车Similar sbustitue (sim.sub.) 相似替换船Single hatch ship 单舱船Sister ship 姐妹船Skid 垫木Skip 吊货盘Sliding hatch cover 滑动舱盖Sling 吊货索(链)环,吊起Slop tank 污水箱Slops 污水Slot 箱位Special equipment 特殊设备Specific gravity(s.g.) 比重Spiral elevator 螺旋式卸货机Spreader 横撐(集装箱吊具)Squat 船身下沉Starboard (side) 右舷Statement of facts 事实记录Stem 船艏,装期供货Stem a berth 预订泊位Stern 船尾Stevedore 装卸工人Stevedor´s (docker’s,hand) hook 手钩Stevedoring charges 装卸费用Stiff 稳性过大Stranding 搁浅Strengthened hold 加固舱Strike clause 罢工条款Strike-bound 罢工阻碍Strip (destuff) a container 卸集装箱Strip seal 封条Stuff (to) 装集装箱Sub-charterer 转租人Sub-freight 转租运费Subject (sub.) details 有待协商的细节Subject free (open) 待定条款Subject (sub.) stem 装期供货待定Subrogation 代位追偿权Substitue 替代船,替换Substitution 换船Suit time 起诉期Summer draught 夏季吃水Summer freeboard 夏季干舷Support ship 辅助船Tackle 索具(滑车)Tally 理货Tally clerk 理货员Tally sheet (book) 理货单Tank car 槽车Tank cleaning 油舱清洗Tank container 液体集装箱Tank terminal (farm) 油灌场Tanker 油轮Tariff 费率表Tarpaulin 油布Tender 稳性过小Terminal chassis 场站拖车Terminal handling charge 场站操作费Through rate 联运费率Tier limit (limitation) 层数限制Time bar 时效丧失Time charter 期租Time sheet 装卸时间表Tolerated outsider 特许非会员公司Tomming (down) 撑货Tones per centimeter (TPI) 每厘米吃水吨数Tones per day (TPD) 每天装卸吨数Tones per inch (TPI) 每英寸吃水吨数Top stow cargo 堆顶货Total deadweight (TDW) 总载重量Tracer (货物)查询单Tractor 牵引车Trading limits 航行范围Trailer 拖车Transfer (equipment handover) charge 设备租用费Transship (trans-ship) 转船Transhipment (transshipment,trans-shipment) 转船Transit cargo 过境货物Transporter crane 轨道式起重机Tray 货盘Trim 平舱Trim a ship 调整船舶吃水Tug 拖轮Turn round (around , or turnaround) time 船舶周转时间Turn time 等泊时间Tween deck 二层甲板Twin hatch vessel 双舱口船Two-way pallet 两边开槽托盘Ultra large crude carrier (ULCC) 超大型油轮Uncontainerable (uncontainerisable) cargo 不适箱货Under deck shipment 货舱运输Unit load 成组运输Unitisation 成组化Universal bulk carrier ( UBC) 通用散装货船Unload 卸货Unmoor 解揽Unseaworthiness 不适航Utilization 整箱货Valuation form 货价单Valuation scale 货价表Vehicle /train ferry 汽车/火车渡轮Ventilated container 通风集装箱Ventilation 通风Ventilator 通风器Vessel 船舶,船方Vessel sharing agreement (V.S.A.) 船舶共用协议Void filler 填充物Voyage account 航次报表Voyage (trip) charter 航次租船Waybill 货运单Weather permitting (w.p) 天气允许Weather working day 晴天工作日Weather-bound 天气阻挠With effect from (w.e.f) 自生效Weight cargo 重量货Weight or measure ( measurement) (W/M) 重量/体积Weight rated cargo 计重货物Well 货井,井区Wharf 码头Wharfage (charges) 码头费When where ready on completion of discharge (w.w. r c.d.) 何时何处还船Whether in berth or not (w.i.b.o.n.) 无论靠泊与否Whether in free pratique or not (w.i.f.p.o.n.) 无论是否通过检验Whether in port or not ( w.i.p.o.n.) 不论是否在港内White (clean, clean petroleum) products 精炼油Wide laycan 长销约期Workable (working) hatch 可工作舱口Working day 工作日Working day of 24 consecutive hours 连续24小时工作日Working day of 24 hours 24小时工作日Working time saved (w.t.s.) 节省的装卸时间Yard (shipyard) 造船厂International Civil Aviation Organization (ICAO) 国际民用航空组织International Air Transport Association (IATA) 国际航空运输协会Scheduled Airline 班机运输Chartered Carrier 包机运输Consolidation 集中托运Air Express 航空快递Air Waybill 航空运单Master Air Waybill (MAWB) 航空主运单House Air Waybill (HAWB) 航空分运单Chargeable Weight 计费重量High density cargo 重货Low density cargo 轻货Specific Commodity Rates (SCR) 特种货物运价Commodity Classification Rates (CCR) 等价货物运价General Cargo Rates (GCR) 普通货物运价Unit Load Devices (ULD) 集装设备Construction Rate 比例运价Combination of Rate 分段相加运价Valuation Charges 声明价值费Declared value for Carriage 运输声明价值No value Declared (NVD) 不要求声明价值Declared value for Customs 海关声明价值No customs valuation (NCV) 无声明价值LOGISTICS 物流LOGISTICS INDUSTRY 物流产业LOGISTICS ACTIVITY 物流活动LOGISTICS OPERATION 物流作业LOGISTICS COST 物流成本LOGISTICS MODULUS 物流模数LOGISTICS CENTRE 物流中心LOGISTICS NETWORK 物流网络LOGISTICS ALLIANCE 物流联盟BUSINESS LOGISTICS 企业物流SOCIETAL LOGISTICS 社会物流THIRD-PARTY LOGISTICS (TPL) 第三方物流LEAN LOGISTICS 精益物流VIRTUAL LOGISTICS 虚拟物流CUSTOMIZATION LOGISTICS 定制物流value-ADDED LOGISTICS SERVICE 增值物流服务SUPPLY CHAIN 供应链SUPPLY CHAIN MANAGEMENT(SCM) 供应链管理SUPPLY CHIAN INTEGRATION 供应链整合PHYSICAL PRODUCTION 产品配送INTEGRATED LOGISTICS 综合物流MATERIAL REQUIREMENT PLANNING (MRP I) 物料需求计划MANUFACTURING RESOURCE PLANNING (MRP II) 制造资源计划DISTRIBUTION REQUIREMENT PLANNING(DRP I) 配送需求计划DISTRIBUTION RESOURCE PLANNING (DRP II) 配送资源计划LOSGISTICS RESOURCE PLANNING (LRP) 物流资源计划ENTERPRISE RESOURCE PLANNING (ERP) 企业资源计划QUICK RESPONSE (QR) 快速反应EFFICIENT CUSTOMER RESPONSE (ECR) 有效客户反应CONTINUOUS REPLENISHMENT PROGRAM (CRP) 连续补充库存计划COMPUTER ASSISTED ORDING(CAO) 计算机辅助订货系统VENDOR MANAGED INVENTORY (VMI) 供应商管理库存ELECTRONIC ORDER SYSTEM (EOS) 电子订货系统ADVANCED SHIPPING NOTICE (ASN) 预先发货通知DIRECT STORE DELIVERY(DSD) 店铺直送POINT OF SALE(POS) 销售实点(信息)系统AUTOMATIC REPLENISHMENT (AR) 自动补货系统JUST IN TIME (JIT) 准时制OUTSOURCING 业务外包(外协,外购)INVENTORY CONTROL 存货控制WAREHOUSE 仓库BONDED WAREHOUSE 保税仓库AUTOMATIC WAREHOUSE 自动化仓库STEREOSCOPIC WAREHOUSE 立体仓库VIRTUAL WAREHOUSE 虚拟仓库WAREHOUSE LAYOUT 仓库布局WAREHOUSE MANAGEMENT SYSTEM (WMS) 仓库管理系统ECONOMIC ORDER QUANTITY(EOQ) 经济订货批量FIXED-QUANTITY SYSTEM(FQS) 定量订货方式FIXED-INTERVAL SYSTEM (FIS) 定期订货方式ABC CLASSIFICIATION ABC分类法DISTRIBUTION CENTRE(DC) 配送(分拨)中心CONTRACT LOGISTICS 合同物流FULL-SERVICE DISTRIBUTION COMPANY (FSDC) 全方位物流服务公司SAFETY STOCK 安全库存LEAD TIME 备货时间INVENTORY CYCLE TIME 库存周期CYCLE STOCK 订货处理周期CROSS DOCKING 交叉配送(换装)GOODS SHED 料棚GOODS STACK 货垛GOODS YARD 货场GOODS SHELF 货架PALLET 托盘STACKING 堆码SORTING 分拣ORDER PICKING 拣选GOODS COLLECTION 集货ASSEMBLY 组配DISTRIBUTION PROCESSING 流通加工ZERO INVENTORY 零库存value-ADDED NETWORK 增值网BAR CODE 条形吗OPTICAL CHARACTER RECOGNITION 光学文字识别ELECTRONIC DATA INTERCHANGE (EDI) 电子数据交换RADIO FREQUENCY (RF) 无线射频GLOBAL POSITIONING SYSTEM (GPS) 全球定位系统GEORGRAPHICAL INFORMATION SYSTEM (GIS) 地理信息系统比较难翻译的费用术语[font=Verdana]海运费ocean freight集卡运费、短驳费Drayage订舱费booking charge报关费customs clearance fee操作劳务费labour fee or handling charge商检换单费exchange fee for CIP换单费D/O fee拆箱费De-vanning charge港杂费port sur-charge电放费B/L surrender fee冲关费emergent declearation change海关查验费customs inspection fee待时费waiting charge仓储费storage fee改单费amendment charge拼箱服务费LCL service charge动、植检疫费animal & plant quarantine fee移动式其重机费mobile crane charge进出库费warehouse in/out charge提箱费container stuffing charge滞期费demurrage charge滞箱费container detention charge[/font][font=Verdana]卡车运费cartage fee商检费commodity inspection fee转运费transportation charge污箱费container dirtyness change坏箱费用container damage charge清洁箱费container clearance charge分拨费dispatch charge车上交货FOT ( free on track )电汇手续费T/T fee转境费/过境费I/E bonded charge空运方面的专用术语空运费air freight机场费air terminal charge空运提单费airway bill feeFSC (燃油附加费) fuel surchargeSCC(安全附加费)security sur-charge抽单费D/O fee上海港常用术语内装箱费container loading charge(including inland drayage) 疏港费port congestion charge他港常用术语场站费CFS charge文件费document charge[/font][font=Verdana]AMS Automated Manifest System 自运舱单系统ACS/ACC ALAMEDA CORRIDOR SURCHARGE 火车通道费(自洛杉矶转运)BAF BUNKER AJUSTMENT FACTOR 燃油附加费系数BAF 燃油附加费,大多数航线都有,但标准不一。
常用大数据词汇中英文对照表
100个常用大数据词汇中英文对照表聚合(Aggregation)-搜索、合并、显示数据的过程算法(Algorithms)-可以完成某种数据分析的数学公式分析法(Analytics)-用于发现数据的内在涵义异常检测(Anomaly detection)-在数据集中搜索与预期模式或行为不匹配的数据项。
除了“Anomalies ” ,用来表示异常的词有以下几种:outliers, exceptions, surprises, contaminants.他们通常可提供关键的可执行信息匿名化(Anonymization)-使数据匿名,即移除所有与个人隐私相关的数据应用(Application)-实现某种特定功能的计算机软件人工智能(Artificial Intelligenee)-研发智能机器和智能软件,这些智能设备能够感知周遭的环境,并根据要求作出相应的反应,甚至能自我学习B行为分析法(Behavioural Analytics)-这种分析法是根据用户的行为如"怎么做”,"为什么这么做”,以及“做了什么”来得出结论,而不是仅仅针对人物和时间的一门分析学科,它着眼于数据中的人性化模式大数据科学家(Big Data Scientist)-能够设计大数据算法使得大数据变得有用的人大数据创业公司(Big data startup)-指研发最新大数据技术的新兴公司生物测定术(Biometrics)-根据个人的特征进行身份识别B字节(BB: Brontobytes)-约等于1000 YB(Yottabytes),相当于未来数字化宇宙的大小。
1 B字节包含了27个0!商业智能(Business Intelligenee)-是一系列理论、方法学和过程,使得数据更容易被理解C分类分析(Classification analysis)-从数据中获得重要的相关性信息的系统化过程;这类数据也被称为元数据(meta data),是描述数据的数据云计算(Cloud computing)-构建在网络上的分布式计算系统,数据是存储于机房外的(即云端)聚类分析(Clustering analysis)-它是将相似的对象聚合在一起,每类相似的对象组合成一个聚类(也叫作簇)的过程。
雅培RUBY五分类血球分析仪标准操作程序
SOP_09-19 雅培RUBY五分类血球分析仪标准操作程序一、目的:确保仪器正常运转,统一项目操作规程,严格检验质量标准,为临床提供及时、可靠的结果报告。
二、适用范围:血液学检验项目三、操作人员:检验科授权工作人员四、操作步骤:1.开机及仪器状态转换①如果仪器背面主电源处于OFF状态,打开仪器背面主电源,打开显示器电源及打印机电源,按仪器右侧电脑开关持续4秒钟,等待主界面Analyzer Status出现Initialized;如果仪器背面主电源处于ON状态,按仪器右侧电脑开关持续4秒钟,等到主界面Analyzer Status出现Initialized。
②选择F12 – Prime,进行系统灌注,并自动检测背景读数,确认背景读数在可接受范围内。
仪器状态转为Ready。
③仪器在Ready状态连续4小时无任何操作,自动转为Standby状态。
在Standby状态选择F12 – Prime,仪器会回到Ready状态。
④如果仪器背面主电源关闭时间超过5分钟,开机后应等待仪器光源预热15分钟才能操作样本。
2.样本运行前准备①检查试剂量:主屏幕选择Reagents,显示当前试剂状态,如需更换,选择F6-New Entry,输入试剂批号、序列号及有效期,更换试剂,选择Maintenance View → Special Protocols →Prime。
注意:如果仪器操作过程中出现WBC Lyse Empty, HGB Lyse Empty, or Dil/Sheath Empty报警提示,必须先更换试剂,之后选择对话框中的Clear Fault按钮,会打开New Reagent Entry对话框,输入试剂批号、序列号及有效期,执行至少5次background,确认背景读数在可接受范围内才能操作样本。
②执行日保养Auto-Clean:仪器必须在Ready状态、Open模式下,选择Maintenance →Scheduled, 选择Auto-Clean,将2ml 酶清洗液加到空试管中,插入吸样探针至管底,选择Start Auto-Clean,开始吸样,90秒后听到哔哔声才可拿开试管。
LOG规范——精选推荐
LOG规范1、Log的⽤途不管是使⽤何种编程语⾔,⽇志输出⼏乎⽆处不在。
总结起来,⽇志⼤致有以下⼏种⽤途:问题跟踪:通过⽇志不仅仅包括我们程序的⼀些bug,也可以在安装配置时,通过⽇志可以发现问题。
状态监控:通过实时分析⽇志,可以监控系统的运⾏状态,做到早发现问题,早处理问题。
安全审计:审计主要体现在安全⽅⾯上,通过⽇志进⾏分析,可以发现是否存在⾮授权的操作。
2、记录Log⽇志的基础原则2.1、⽇志级别划分Java⽇志通常可以分为:error、warn、info、debug、trace五个级别。
error:问题已经影响到软件的正常运⾏,并且软件不能⾃⾏恢复到正常的运⾏状态,此时需要输出该级别的错误⽇志。
warn:与业务处理相关的失败,此次失败不影响下次业务的正常执⾏,通常的结果为外部的输⼊不能获得期望的结果。
info:系统运⾏期间的系统运⾏状态变化,或者关键业务处理记录等,⽤户或者管理员在系统操作运⾏期间关注的⼀些信息。
debug:软件调试信息,开发⼈员使⽤该级别的⽇志发现程序运⾏中的⼀些问题,排查故障。
trace:基本同上,但是显⽰的信息更详尽。
2.2、⽇志对性能的影响不管多么优秀的⽇志⼯具,在⽇志输出时总会对性能产⽣或多或少的影响,为了将影响降到对低,有以下⼏个准则需要遵守:如何创建Logger实例:创建Logger实例有是否static区别,在log4j的早期版本中,⼀般会要求使⽤static,⽽在⾼版本以及后来的slf4j 中,该问题已经得到优化,获取(创建)logger实例的成本已经很低。
所以我们要求:对于可以预见的多数情况下单例运⾏的class,可以不添加static前缀;对于可能是多例居多,尤其是需要频繁创建的class,要求添加static前缀。
判断⽇志级别:对于可以预见的会频繁产⽣的⽇志输出,⽐如for、while循环,定期执⾏的job等,建议先使⽤if对⽇志级别进⾏判断后再输出。
Python网络爬虫的错误处理与异常处理方法
Python网络爬虫的错误处理与异常处理方法网络爬虫在信息获取和数据分析中发挥着重要作用。
然而,由于网络环境的复杂性和不确定性,爬取过程中难免会遇到各种问题和异常情况。
为了确保爬虫的稳定性和可靠性,我们需要采取一些错误处理和异常处理的方法。
本文将介绍Python网络爬虫常见的错误和异常情况,并提供相应的处理方法。
一、网络请求异常处理方法1. 异常类型在进行网络请求时,常见的异常类型包括连接超时(Timeout)、连接错误(ConnectionError)、请求错误(RequestException)等。
2. 处理方法为了解决网络请求异常,我们可以使用try-except语句捕获异常并进行处理。
例如:```import requeststry:response = requests.get(url)response.raise_for_status() # 检查是否请求成功except requests.exceptions.Timeout:print("连接超时")except requests.exceptions.ConnectionError:print("连接错误")except requests.exceptions.RequestException:print("请求错误")```二、解析页面异常处理方法1. 异常类型在解析页面时,可能会遇到页面结构变化、元素不存在、解码错误等异常情况。
2. 处理方法针对解析页面的异常,我们可以使用try-except语句捕获异常并进行处理。
同时,可以使用合适的解析库(如BeautifulSoup、lxml等)处理页面结构变化的情况。
```from bs4 import BeautifulSouptry:soup = BeautifulSoup(html, 'lxml')tag = soup.find('tag_name')except AttributeError:print("元素不存在")except UnicodeDecodeError:print("解码错误")```三、数据存储异常处理方法1. 异常类型在将爬取到的数据存储到数据库、文件等中时,可能会遇到写入错误、存储格式错误等异常情况。
js中异常处理
js中异常处理//js中定义了错误处理机制(throw、 try...catch,以及创建⽤户定义错误类型的能⼒)//js中的异常处理语句有两个,⼀个是try……catch……,⼀个是throw。
// try……catch⽤于语法错误,错误有name和message两个属性。
// throw⽤于逻辑错误。
// 对于逻辑错误,js是不会抛出异常的,也就是说,⽤try catch没有⽤。
这种时候,需要⾃⼰创建error对象的实例,然后⽤throw抛出异常。
// 注意:通过Error的构造器可以创建⼀个错误对象。
当运⾏时错误产⽣时,Error的实例对象会被抛出。
// Error对象也可⽤于⽤户⾃定义的异常的基础对象;// js中的Error类型共分为七种,分别为://1、 Error 构造函数,以下六种类型均继承于它,常规类型。
//2、 EvalError 创建⼀个error实例,表⽰错误的原因:与 eval() 有关。
eval() 函数会将传⼊的字符串当做 JavaScript 代码进⾏执⾏。
//3、 InternalError 创建⼀个代表Javascript引擎内部错误的异常抛出的实例。
如: "递归太多".严格模式中不建议使⽤;//4、 RangeError 创建⼀个error实例,表⽰错误的原因:数值变量或参数超出其有效范围。
//5、 ReferenceError 创建⼀个error实例,表⽰错误的原因:⽆效引⽤。
//6、 SyntaxError 创建⼀个error实例,表⽰错误的原因:eval()在解析代码的过程中发⽣的语法错误。
//7、 TypeError 创建⼀个error实例,表⽰错误的原因:变量或参数不属于有效类型。
//8、 URIError 创建⼀个error实例,表⽰错误的原因:给 encodeURI()或 decodeURl()传递的参数⽆效。
/*1、throw语句 *///throw语句⽤来抛出⼀个⽤户⾃定义的异常。
WebAPi之异常处理(Exception)以及日志记录(NLog)(十六)
WebAPi之异常处理(Exception)以及⽇志记录(NLog)(⼗六)前⾔上⼀篇⽂章我们介绍了关于⽇志记录⽤的是Log4net,确实也很挺强⼤,但是别忘了我们.NET有专属于我们的⽇志框架,那就是NLog,相对于Log4net⽽⾔,NLog可以说也是⼀个很好的记录⽇志的框架,并且其中的异步⽇志等都有⾮常⼤的改善,本⽂借此⽤了最新的NLog来在Web APi中进⾏记录⽇志。
NLog第⼀步则是下载我们需要的程序包,包括程序集以及配置⽂件利⽤NLog记录⽇志同样可以实现如我们上篇⽂章利⽤Log4net来实现的那样,所以在这⾥就不多说,下⾯我们来讲另外⼀种⽅式,那就是利⽤.NET内置的跟踪级别类来进⾏记录⽇志。
从⽽达到我们所需。
在NLog.config配置⽂件中,我们添加如下进⾏⽇志的记录【注意:只是简单的利⽤了NLog,它还是⽐较强⼤,更多的详细内容请到官⽹或通过其他途径进⾏学习】<targets><target name="logfile" xsi:type="File" fileName="${basedir}/WebAPiNLog/${date:format=yyyyMMdd}.log" /> //在根⽬录下的WebAPiNlog⽂件下⽣成⽇志</targets><rules><logger name="*" minlevel="Trace" writeTo="logfile" /></rules>第⼆步既然是利⽤.NET内置的跟踪级别类来实现,那么我们就需要实现其接⼝ ITraceWriter ,该接⼝需要实现如下⽅法// 摘要:// 当且仅当在给定 category 和 level 允许跟踪时,调⽤指定的 traceAction 以允许在新的 System.Web.Http.Tracing.TraceRecord// 中设置值。
exception oracal用法
exception oracal用法Exception Handling in Oracle: A Comprehensive GuideException handling is a crucial aspect of any programming language, including Oracle. It allows developers to gracefully handle unexpected errors, perform necessary actions, and maintain data integrity. In this article, we will explore the usage of exception handling in Oracle and understand various concepts associated with it.1. Introduction to Oracle Exceptions:Exception is an abnormal condition that occurs during the execution of a program. In Oracle, exceptions can be categorized into two types: predefined exceptions and user-defined exceptions. Predefined exceptions are raised internally by Oracle, while user-defined exceptions are explicitly raised by the developer.2. Using Predefined Exceptions:Oracle provides a broad range of predefined exceptions, such asNO_DATA_FOUND, TOO_MANY_ROWS, DUP_VAL_ON_INDEX, and others. These exceptions are associated with specific error conditions that commonly occur in database operations. To handle these exceptions, developers can use the EXCEPTION block, which allows them to catch the predefined exception and handle it accordingly.3. Raising User-Defined Exceptions:Apart from predefined exceptions, Oracle allows developers to define their own exceptions according to specific business logic or unique requirements. To raise a user-defined exception, developers can use the RAISE statement, followed by the name of the exception. This enables developers to create a custom exception hierarchy and handle errors in a more personalized manner.4. Exception Propagation:Exceptions can propagate in Oracle, which means that an exception raised in one block or subprogram can be caught and handled in an outer block. This provides flexibility in organizing error-handling routines and centralizing exception handling when necessary. By utilizing exception propagation, developers can maintain a clean and concise code structure.5. Exception Handling Best Practices:While working with exception handling in Oracle, it's important to follow certain best practices:- Catch specific exceptions instead of using generic exceptions to ensure accurate and precise error handling.- Log exception details, including error codes and error messages, for troubleshooting and debugging purposes.- Enclose database operations that could potentially raise exceptions inside proper exception handling blocks.- Avoid suppressing exceptions by leaving empty EXCEPTION blocks, as it may lead to unnoticed errors or data corruption.Conclusion:Exception handling plays a vital role in Oracle programming, allowing developers to handle errors effectively and maintain data integrity. By understanding the concept of exceptions, utilizing predefined and user-defined exceptions, and following best practices, developers can create robust and reliable Oracle applications.。
wms异常处理流程
wms异常处理流程英文回答:WMS Exception Handling Process.An effective warehouse management system (WMS) should have a robust exception handling process to ensure that any errors or disruptions are managed efficiently and with minimal impact on operations. The following steps outline a comprehensive WMS exception handling process:1. Exception Identification and Logging:The WMS should be able to identify and log exceptions that occur during its operation. These exceptions can include errors, warnings, or unexpected events. The logged exceptions should include details such as the time of occurrence, the source of the exception, and the error code or message.2. Exception Classification:Exceptions should be classified based on their severity and impact. Critical exceptions require immediate attention and should be prioritized for handling. Moderate exceptions may require action within a specified time frame, while minor exceptions can be handled at a later time.3. Exception Routing:Based on the exception classification, the WMS should route exceptions to the appropriate team or individual responsible for handling them. This could involve assigning the exception to a specific user or department for resolution.4. Exception Resolution:The assigned team or individual should investigate the exception and take appropriate actions to resolve it. This may involve correcting the underlying cause of the exception, rerouting the affected process, or taking othernecessary steps to restore normal operation.5. Exception Monitoring and Feedback:The WMS should provide mechanisms for monitoring the status of exceptions and tracking their resolution. This helps ensure that exceptions are handled promptly and effectively. Feedback on the exception handling process can be collected to identify areas for improvement.6. Communication and Documentation:The WMS should facilitate communication and documentation related to exception handling. This includes providing notifications to stakeholders about important exceptions, documenting the resolution steps taken, and maintaining a record of all exceptions handled.By implementing a comprehensive exception handling process, organizations can ensure that their WMS isresilient and able to handle disruptions efficiently. This helps minimize the impact of exceptions on operations andmaintain the overall efficiency of the warehouse.中文回答:WMS异常处理流程。
首件异常处理流程
首件异常处理流程Dealing with the first item exception in a manufacturing process is crucial to maintaining product quality and customer satisfaction. 对于制造流程中的首件异常处理,这关乎产品质量和客户满意度的维持。
When a first item exception occurs, it can disrupt the entire production process and lead to delays in delivery to customers. 当首件异常发生时,它可能会打乱整个生产过程,并导致延迟交付给客户。
This can have a negative impact on the company's reputation and financial performance. 这可能会对公司的声誉和财务表现产生负面影响。
Therefore, it is essential to have a well-defined and effective process in place for handling first item exceptions. 因此,有一个明确定义且有效的处理首件异常的流程非常重要。
One important aspect of dealing with first item exceptions is to have a clear understanding of what constitutes an exception. 处理首件异常的一个重要方面是要清楚地理解何为异常。
This may involve deviations from the standard production process, defective raw materials, or errors in the assembly of components. 这可能涉及到与标准生产过程的偏差,次品原材料,或是组件组装中的错误。
c#的日志插件NLog基本使用
c#的⽇志插件NLog基本使⽤本⽂介绍c#的⽇志插件NLog1. 直接下载插件包 Install-Package NLog.Config2. 使⽤LogManager创建Logger实例,最好⼀个类⾥⾯⼀个Logger实例写法⼀这种写法,记录的⽇志⽂件,显⽰的logger名字,是命名空间加上logger所在类的类名,如 ConsoleApp1.Programprivate static Logger mylogger = LogManager.GetCurrentClassLogger();写法⼆这种写法,可以⼿动设置⽇志⽂件中的logger名字Logger mylogger = LogManager.GetLogger("myTest");3. 级别由低到⾼Trace 记录完整的信息,⼀般只⽤在开发环境Debug 记录调试信息,没有Trace信息完整,⼀般也只⽤在开发环境Info 简单的信息,⼀般⽤在⽣产环境Warn 记录警告信息,⼀些可以解决的⼩问题Error 记录报错信息,⼀般都是Exceptions信息Fatal ⾮常严重的错误信息4. logger.Trace("Sample trace message");logger.Debug("Sample debug message");("Sample informational message");logger.Warn("Sample warning message");logger.Error("Sample error message");logger.Fatal("Sample fatal error message");或者使⽤logger.Log(, "Sample informational message");⽀持格式化 mylogger.Fatal("Sample {0} error message", "fetal");尽量使⽤NLog内置的格式化⼯具,NLog做了优化⼯作5. 最基础的配置第⼀步,打开NLog.config配置⽂件,添加如下配置<targets><target name="logfile" xsi:type="File" fileName="file.txt" /> // 创建⼀个target,代表输出⽇志⽂件的配置</targets><rules><logger name="*" minlevel="Info" writeTo="logfile" /> // 设置Info级别以上的⽇志,才能够输⼊到什么名为logfile的target当中/*1.这⾥logger⾃⼰还有⼀个name,这个name对应类名,也就是说什么样的类名可以输出⽇志,如ConsoleApp1.Program2.可以添加final="true"属性,表⽰后⾯的所有针对此指定名字的logger都⽆效*/</rules>第⼆步,运⾏代码即可多target配置<targets><target name="logfile" xsi:type="File" fileName="file.txt" /><target name="console" xsi:type="Console" /> // 创建⼀个target表⽰⽤控制台输出⽇志信息</targets><rules><logger name="*" minlevel="Trace" writeTo="logfile" /><logger name="*" minlevel="Info" writeTo="console" /> // 将Info级别以上的配置信息输出到名为console的target中</rules>6. 异步包装器配置<targets><target name="asyncFile" xsi:type="AsyncWrapper"><target name="logfile" xsi:type="File" fileName="file.txt"/></target></targets><rules><logger name="*" minlevel="Trace" writeTo="asyncFile"/></rules>还有很多包装器,按需⾃查7. 布局是⽤来格式化⽇志输出信息的simple⽇志格式化<target name="logfile" xsi:type="File" fileName="file.txt" layout="${date:format=yyyyMMddHHmmss} ${message} ${counter:increment=3:sequence=Layout:value=5}"/>还有很多格式化写法,⾃⾏查阅8. public class Demo1{protected Logger Log { get; set; }protected Demo1(){Log = LogManager.GetLogger(GetType().FullName);}}public class Demo2: Demo1 {public Demo2():base() { } }。
日志输出规范
⽇志输出规范1、log4j⽇志参数说明yout.ConversionPattern=[%p][%l] %d{yyyy-MM-dd HH:mm:ss} %m%n格式输出修改成:yout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} - [%p] - [%l] - [ %m ]%n时间-事件级别-打印⽇志的详细信息-消息内容p log事件的级别。
l log发⽣位置的详细描述,包括⽅法名、⽂件名及⾏号。
d 时间和⽇期的输出格式,例如:%d{yyyy MM dd HH:mm:ss,SS},可不带后⾯的⽇期格式字符。
m log事件的消息内容n 根据所运⾏的平台输出相应的⾏分隔字符。
2、在⼀个对象中通常只使⽤⼀个Logger对象,Logger应该是static final的,只有在少数需要在构造函数中传递logger的情况下才使⽤private final。
private static final org.slf4j.Logger logger =LoggerFactory.getLogger(TemperatureDetectionController.class);如果使⽤com.leelen.esafe.utils.Logger,则⽇志输出的具体类将不能体现。
之前写法:(TAG + ":" + JSON.toJSONString(cmds));调⽤LoggerUtil的类,并且要⼿动获取类名,拼接字符串才能显⽰具体的类名3.输出Exceptions的全部Throwable信息,因为logger.error(msg)和logger.error(msg,e.getMessage())这样的⽇志输出⽅法会丢失掉最重要的StackTrace信息。
try {throw new Exception("测试⽇志");}catch (Exception e){(e.getMessage());//错误("输⼊⽇志1",e.getMessage());//错误("输⼊⽇志2",e);//正确}4、不允许记录⽇志后⼜抛出异常,因为这样会多次记录⽇志,只允许记录⼀次⽇志。
U8 各产品模块日志使用说明
查看后台任务执行情况
1、三类调试功能所使 用的端口 (BGDebugPort、 EMLDebugPort、 DDDebugPort)使用默 认的即可,除非在运 行dbgsvr的计算机中 该端口已被占用 如果是在CRM服务器上 运行dbgsvr,则三类 调试功能的主机地址 (BGDebugHost、 EMLDebugHost、 DDDebugHost)可使用 默认的127.0.0.1,否 则应修改为运行 dbgsvr的主机的IP地
按照配置规则,显示节点信息和 sql语句信息。有详细的堆栈调用 情况
收集系统运行时,执 行较慢的功能节点、 sql语句
记录门户加载运行记录,及错误异 常等数据 记录总账运行记录,及错误异常等 数据 记录运行记录,及错误异常等数据 记录运行记录,及错误异常等数据
开启/关闭对话框显示异常信息功 能
如: 2008-09-26 07:47:34,156 [3172] ERROR U8MDebugLog [] 【TraceInfo】 U8M.DP.Execute Failure ; : Message:【无所需资 料】 Type:【 UFSoft.U8.Framewor 开启/关闭对话日志记录功能,若开 k.Exceptions.UFNoD 启则会记录界面录入操作的日志 ataException】 Track:【 在 UFSoft.U8.BO.UIP.B O01000.LoadById(In t32 id) 在 UFSoft.U8.BO.UIP.B O01000.UFSoft.U8.U 8M.DP.IDataLoad.Lo adById(Object Id) 在 UFSoft.U8.U8M.DP.U IPController.LoadB
日志记载了传入打印控件的数据信 根据XML标签判断 息
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
YYSetup-4.0.0.1.exe:1.0.0 Build: 0 2011-10-10 19:30:50
[Windows7.简体中文旗舰版下载.(MSDN官方发布正式版原版镜像).带破解补
丁].PCSKYS_Windows7Loader_v3.27.exe: Build: 0 2009-11-09 21:45:44
sr2012setup.exe:12.0.2 Build: 0 2011-09-22 07:57:32
Thunder7.2.2.3188.exe:7.2.2 Build: 3188 2011-09-23 21:38:28
WanDouJiaSetup.exe:1.19.0 Build: 0 2011-09-22 00:20:40
ProcessMonitor.exe:1.0.0 Build: 0 2011-11-07 20:45:16
qm9chs.exe:0.0.0 Build: 0 2011-10-04 11:29:00
QQ2011Beta4.exe:1.66.2321 Build: 0 2011-09-09 10:48:04
Product Versions
(熊猫烧香)专杀VikingKiller.exe:4.0.7 Build: 404 2011-11-07 20:45:54
01WinRAR 4[1].0 简体中文版.exe: Build: 0 2011-10-12 11:18:38
03Microsoft .NET Framework 3.5SP1(独立安装程序)FullFull.exe:3.5.30729
11-19 06:28:44
baofeng5.exe:5.1.815 Build: 1111 2011-10-01 17:43:00
BumpTop_2.1.6225.0.exe:2.1.6225 Build: 0 2011-10-29 15:58:46
DG_2011SP1_2090U.exe:5.6.901 Build: 2090 2011-09-27 18:56:02
install_flash_player_11_active_x_32bit.exe:11.0.1 Build: 152 2011-10-04
10:44:08
IPScan20.exe:1.10.1525 Build: 0 2011-09-22 21:48:50
KAV11_10_154.exe:2011.8.30 Build: 683 2011-09-22 08:28:50
天子星餐饮正餐连锁(总部)12881019.exe:8.0.159 Build: 0 2005-11-12
22:25:34
局域网共享设置.exe:2007.1.27 Build: 6 2011-10-29 12:21:18
开关机查看.exe: Build: 0 2011-09-22 21:48:54
Build: 1 2011-09-22 00:31:06
04Microsoft .NET Framework 4(独立安装程序)_Full_x86_x64.exe:4.0.30319
Build: 1 2011-09-22 00:21:16
06搜狗拼音5.2.exe:5.2.0 Build: 5374 2011-08-12 09:50:02
setup_8.1.0.2001k.exe:8.1.0 Build: 2010 2011-08-12 13:12:12
setup_alading.exe:3.3.0 Build: 1804 2011-09-22 08:22:42
sndvol32.exe:5.1.2600 Build: 0 2011-11-10 14:49:32
WebPingTester.exe:1.0.0 Build: 0 2011-11-07 20:45:04
WMZ完美者解码_Dio.exe: Build: 0 2011-10-23 16:18:36
WORD-EXCEL密码破解.exe:1.0.0 Build: 1 2011-11-09 03:22:36
Kugou7_Setup.exe:7.0.37 Build: 10457 2011-09-27 19:44:44
LOL_V3.0.0.9.exe: Build: 0 2011-09-30 22:25:32
McAfee.exe:2.5.0 Build: 171 2011-10-24 14:25:58
dotNetFx40_Full_x86_x64.exe:4.0.30319 Build: 1 2011-06-02 09:52:48
Dreamweaver8-chs.exe:4.0.100 Build: 1190 2010-01-11 10:25:52
everestultimate550.exe: Build: 0 2010-09-30 11:28:10
excel病毒专杀.exe:1.0.0 Build: 0 2011-11-10 14:39:18
ftpserv.exe:1.1.0 Build: 0 2011-10-07 12:24:14
hfs.exe:2.3.0 Build: 0 2011-10-07 12:24:14
install_flash_player.exe:10.3.183 Build: 10 2011-09-22 00:43:18
System : Windows XP Professional, Version: 5.1, Build: A28, "Service
Pack 3"
Processor: Intel, Intel(R) Pentium(R) Dual CPU E2140 @ 1.60GHz, 1590
一键GHOST_2011.exe:11.2.2011 Build: 1701 2011-09-21 23:41:52
二维码驱动.exe:4.1.100 Build: 1332 2011-09-27 11:45:04
图片文字获取.exe:2008.3.11 Build: 0 2011-09-24 11:04:18
mediaplayer11.exe:2008.3.11 Build: 0 2011-03-24 14:04:20
MySQL.exe: Build: 0 2006-05-26 04:51:50
nortondiskdoctor.exe:2008.3.25 Build: 0 2011-10-24 16:51:30
QQGame2011Beta4_setup_web.EXE:2.5.104 Build: 10 2011-10-19 00:49:04
QvodSetup5.0.77.exe: Build: 0 2011-10-21 03:25:54
rundl132logo1rundll32.exe:1.0.0 Build: 1 2007-01-11 21:25:14
2003-2007兼容包.exe:12.0.6015 Build: 5000 2009-06-25 20:00:50
360杀毒_3.0正式版.exe:3.0.0 Build: 2094 2011-10-07 12:21:26
Adobe Photoshop CS4 Extended简体完美增强安装版.exe:0.0.0 Build: 0 2008-
xara3d.exe:2008.3.25 Build: 0 2011-10-23 17:30:28
XLaccSetup_xlgw.exe:1.1.10 Build: 1218 2011-09-29 20:42:00
XPOEM免激活.exe: Build: 0 2008-02-21 10:33:52
############# ERROR ON: 2011-11-13 15:15:06
D:\TDDOWNLOAD\软件\hfs.exe
地址00558EB8模块'hfs.exe'访问违例。 Read于地址574F4464
HFS 2.3 beta (279)
----------------------------------------------------------------
MHz MMX
Display : 1366x768 pixels, 32 bpp
----------------------------------------------------------------
----------------------------------------------------------------
鸿 533 2011-01-07 15:48:16
### END LOG
数字密码破解.exe:0.3.0 Build: 0 2011-11-09 03:29:54
有道词典_4.3.exe:4.3.27 Build: 3256 2011-10-12 08:47:18
视频录制.exe: Build: 0 2011-11-06 14:54:22
配送中心库存1228.exe:8.0.159 Build: 0 2010-12-30 17:56:12
酷狗音乐7.exe:7.1.3 Build: 11358 2011-10-12 08:46:58
风林进程守护.exe: Build: 0 2011-05-13 11:14:46
驱动精灵2010.exe:3.5.930 Build: 1116 2011-10-12 08:58:38
鸿智安全客户端.exe:15.0.0 Build: 533 2003-01-01 20:10:56