`
hnzhangshi
  • 浏览: 5964 次
  • 性别: Icon_minigender_1
  • 来自: 郑州
文章分类
社区版块
存档分类
最新评论
文章列表
通过设置CSS样式可以设置ToolTip的样式: <fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; mx|ToolTip { backgroundColor: black; backgroundAlpha: 1.0; cornerRadius: 0; color: white; fontSize: 12; } </fx:Style> 一个自定义T ...
transform-tool:http://code.google.com/p/transform-tool/ flex-object-handles:http://code.google.com/p/flex-object-handles/ 个人感觉transform-tool的界面效果更友好一些,flex-object-handles做的更灵活些。
在面向对象的设计中,我们经常会听到或用到聚合、耦合的概念。面向对象的目标就是设计出高聚合、低耦合的程序。然而,究竟什么是聚合、什么是耦合,恐怕每个人都有自己的答案,换句话说,大多数人对聚合和耦合的概念 ...
public class DesUtil { byte[] bytekey; public DesUtil(String strKey) {   this.bytekey = strKey.getBytes(); } // 声明常量字节数组 private static final int[] IP = { 58, 50, 42, 34, 26, 18, 10, 2, 60, 52,    44, 36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6, 64, 56, 48,    40, 32, 24, 16, 8, 57, 49, 4 ...
在 JAVA 中,从 J2EE1.4 开始,SUN 提供了 JCE( JAVA CRYPTO ENGINE ),其中包含有 DES 算法,在 JAVA 中使用 DES 算法的代码示例如下: Java Crypto Example import java.security.InvalidKeyException; import java.security.Key; import java.security.NoSuchAlgorithmException; import java.security.Security; import javax.crypto.Cipher; import java ...
Global site tag (gtag.js) - Google Analytics