|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
到时我们不用学struts,不用学spring,不用学Hibernate,只要能把jsf学会了,完全可以替代所有的框架,包括AJAX,都知道AJAX并不是新技术,虽说我没深入学习jsf但我认为jsf应该已经能通过其它技术替代AJAX,实现无缝刷新。
赛门铁克防病毒扫描引擎是一款企业级的杀毒引擎,并能够和各类情况举行集成,今朝项目中必要在J2EE的情况中利用这个手艺,故发布出完成办法供人参考。为此目标专门开辟了一个jar包用于和ScanServer交互,关于这款产物的试用版下载:http://www.symantec.com/enterprise/products/trialware.jsp?pcid=1008&pvid=836_1
我将在文件下载中供应这个jar包的下载,名字为virus-scan-connect.zip
以下的是最复杂的完成步骤
0Installvirusscanserver
SSE-InstallConfig-20061220
<1>,InstalltheSSEV51:
0,Downloadtrialversionsoftwareandlicense.
http://symantec.com/enterprise/products/trialware.jsp?pcid=1008&pvid=836_1
1,InstallJDK5;
2,InstallScanEngine.exe,setuptheAdminportandpassword;
3,Installlicensefile
(1)Bywebconsole,https://ip:8004/;System-->License-->Install.
[Note,onlywithhttpsisavailable.]
(2)CopylicensefiletoC:ProgramFilesCommonFilesSymantecSharedLicenses;
4,WorkingwithICAP;
1VirusScaninJSP
1ImporttheJarpackage-virusscan-0.1.jar
2Asimpleimplementpracticeis
1SampleInvodeCode:
2publicstaticvoidmain(String[]args){
3//icap://10.225.69.89:1344/avscan是scanserver的url
4VirusScanManagervsm=newVirusScanManager("icap://10.225.69.89:1344/avscan");
5
6
7
8StringtestFile="./test/eicar.com.txt";
9InputStreamin=null;
10
11try{
12//Eicar是测试病毒代码
13//in=newByteArrayInputStream(Eicar.getEicar());
14in=newFileInputStream(testFile);
15}catch(Exceptione){e.printStackTrace();
16
17}vsm.processScanVirus("eicarTestFile.txt","plain/text",in);
18
19}
20
C++编译的是本地码,优点是启动快,而且可以精确控制资源因此可以开发很高效的程序.缺点是编程麻烦,而且容易留下安全隐患.跨平台靠源代码在各个平台间分别编译(一处编写到处编译) |
|