Posts Tagged ‘java’

Ruby中Digest::SHA1.hexdigest(string)的Java实现

26th January, 2007

也许在处理用户密码的时候会用到 :)

Ruby代码:

  1. require "digest/sha1"
  2.  
  3. def sha1_hexdigest(src)
  4.    Digest::SHA1.hexdigest(src)
  5. end

Java代码:
[...]

Java SE 6 Is Available!

11th December, 2006

Java SE 6 is the current major release of the Java SE platform, with full support from NetBeans IDE 5.5. Sun endeavors to foster the highest level of transparency and collaboration on the platform with the Java community through Project JDK 6, resulting in the following key features. Sun’s Java Multi-Platform Support, Training, and Certification can provide you the peace of mind to develop and deploy Java solutions with confidence.

[...]