现在网上的很多《java程序员面试宝典》pdf版都不全面,而我所上传的这个资源,非常全面!
2023-12-15 07:05:34 51.05MB java程序员面试宝典pdf版
1
C++部分使用了Wei Dai整理的开源C++加密工具cryptopp(www.cryptopp.com),cryptopp是一个非常优秀和完善的开源C++加密工具,将C++技术和设计模式使用到了淋漓尽致的地步,不过对于初学者来说比较难以上手,特别是需要将项目交给初学者来实现的时候,所以当时在cryptopp的基础上做了一些封装,并且将RSA,AES,SHA1,RSA-SHA1 Sign分离成独立的类,并且添加了Base16和Base64编码算法,使用这几个加密算法,几乎可以解决一般项目对通信安全的需要。 Java部分使用了JDK自带的SunJCE加密框架,一般网上可以找到的Java加密解密都是使用SunJCE框架,还有一个比较著名的 Java开源加密工具是bouncycastle(http://www.bouncycastle.org/),因为SunJCE是JDK自带的,所以使用比较方便,相对于cryptopp,SunJCE要容易上手得多,几乎不需要再做封装,不过为了跟C++封装统一,也做了简单的封装,保持C++接口和Java接口相近。 C++封装在Visual Studio 2003下测试通过,Java封装在jdk1.5.0_14下测试通过。 更详细的信息,解压缩后参考/doc/crypto.doc和源代码.
2023-12-15 07:05:14 225KB RSA AES SHA1 RSA-SHA1
1
JAVA经典算法50题,比较好的算法,希望从事java编程的人可以得到帮助
2023-12-15 07:04:56 307KB java算法
1
比较完善的一款在线商城系统,很具有规范性,比较适合学习,数据库mysql的sqlserver均有,自己添加了说明文档,很清晰,源码数据库文件都有
2023-12-15 07:04:37 3.02MB java
1
java程序设计教程(第2版)雍俊海PPT及源代码
2023-12-15 07:04:17 5.19MB java 程序设计教程
1
由于某些项目需要知道一个函数处理中需要返回函数的处理状态,同时 也想知道函数处理的数据,这是我们就需要使用多个返回值。但是java中不支持in,out方式的参数 如我们在获得用户信息时使用 int getUserInfo(String username,String password,UserInfo userinfo); 我们在getserInfo函数中返回值需要的是返回处理状态,其中我们可以通过userinfo来知道获得的数据,虽然我们直接使用 userinfo的相关set方法将数据保存到userinfo对象中,一般如果不重新生成对象,我们可以将值正确返回. 但是在hibernate等数据库访问时,我们却无法获得userinfo对象。原因就是java 使用的是对象传递. 那么怎么解决返回多个参数值呢? 解决方式就是用HashMap来保存返回的结果.这样就可以解决多个返回值的问题
2023-12-15 07:03:59 2KB HashMap 多个值,
1
用Java实现的弹出式菜单,包括鼠标事件和鼠标事件适配器的运用。
2023-12-15 07:03:22 1KB Java 弹出式菜单 鼠标事件
1
java pdf转swf,最后在页面显示实例(类似百度文库)
2023-12-15 07:02:53 25.9MB pdf转swf 类似百度文库
1
The objective of this book is to study a broad variety of important and useful algorithms—methods for solving problems that are suited for computer implementation. We shall deal with many different areas of application, always concentrating on fundamental algorithms that are important to know and interesting to study. We shall spend enough time on each algorithm to understand its essential characteristics and to respect its subtleties. Our goal is to learn well enough to be able to use and appreciate a large number of the most important algorithms used on computers today. The strategy that we use for understanding the programs presented in this book is to implement and test them, to experiment with their variants, to discuss their operation on small examples, and to try them out on larger examples similar to what we might encounter in practice. We shall use the Java programming language to describe the algorithms, thus providing useful implementations at the same time. Our programs have a uniform style that is amenable to translation into other modern programming languages as well.
2023-12-15 07:02:29 9.55MB Algorithms Java
1
Java核心技术卷二高级篇第八版,而且是中文版看了不后悔
2023-12-15 07:00:50 54.07MB java 核心技术
1