Tag: 防病毒软件

合法程序上的反病毒检测

基本上,我的程序与另一个jar文件一起运行。 以下是下载function的代码: public void saveUrl(final String filename, final String urlString) throws MalformedURLException, IOException { BufferedInputStream in = null; FileOutputStream fout = null; try { in = new BufferedInputStream(new URL(urlString).openStream()); fout = new FileOutputStream(filename); final byte data[] = new byte[1024]; int count; while ((count = in.read(data, 0, 1024)) != -1) { fout.write(data, 0, count); } } […]

开发人员计算机的防病毒(Symantec Endpoint)配置

您对开发人员PC的“Symantec Endpoint”配置建议是什么? 我们使用Eclipse,IntelliJ,Ant和Tomcat进行Java开发。 使用“Symantec Endpoint”,构建和服务器启动速度非常慢。 无法替换或删除Symantec。 另请参阅https://stackoverflow.com/questions/111226/least-intrusive-antivirus-software-for-development-pc,http://cn.codinghorror.com/blog/archives/000803.html和http:// www.theserverside.com/news/thread.tss?thread_id=44775