搜索资源列表
StrArray
- 将图片数据转换成字节流传输的StrByte类, 替代FLEX中ByteArray类.-picture data into byte-stream transmission StrByte category, FLEX which ByteArray alternative category.
as3boxingtu
- pcm这段代码首先加载并播放一个声音,然后监听Event.ENTER_FRAME事件,也就是在声音播放时触发onEnterFrame()函数. onEnterFrame()首先调用SoundMixer.computeSpectrum()方法,把波形数据保存在ByteArray对象bytes中. 然后使用矢量绘图API绘制声音的波形.第一个for循环遍历前256个左声道的数据, 并使用Graphics.lineTo()方法从一个点绘到另一个点.第二个for循环遍历接下来的256个右声道的数据,
src
- 给定结构数据 与 ByteArray 互转-Given the structure of data and conversion ByteArray
ByteArrayDataSource
- 构造 ByteArray DataSource-build ByteArray DataSource
ByteArray
- Run an Executable from a MemoryStream
AS3FastMemory
- 测试Adoble没有公开的快速操作内存的代码,这个方法可以把一段bytearray虚拟成内存进行操作-Test fast memory access of as3.
DES-and-byteArrAy--V1.4-Final
- 一个用VBA写的注册机,支持3DES和byteArrAy加密方式-RI using VBA to write a support 3DES encryption and byteArrAy
ByteArray-Scale-Bitmap
- 9-slice Bitmap scaling by ByteArray. Very useful for GUI-9-slice Bitmap scaling by ByteArray. Very useful for GUI!!
Base64
- AS3 base64,用于将ByteArray转换字符串-AS3 base64
Encryption
- C#写的加密解密源码: 将字符串转化为UTF-8的ByteArray后,使用TripleDES算法对字符串进行加密,加密后的字符串再转化为Base64字符串。-Written in C# encryption and decryption source code: the string converted to UTF-8 ByteArray using the TripleDES algorithm to encrypt the string, the encrypted string is
ByteArray
- ByteArray Flash 的封装 开发服务器使用 流处理-ByteArray containing Flash of encapsulation Development server to use Stream processing
ByteArray
- Wrapper for a byte[], which provides read-only access and can "reveal" a partial slice of the underlying array.
ByteArray
- Wrapper for a byte[], which provides read-only access and can "reveal" a partial slice of the underlying array.
_fpmath
- Return the first 8 bytes of a bytearray, encoded as a little-endian uint64 Kernel Device Driver for linux v2.13.6.
flex-xls
- 专门读取Excel文件的类,应用示例: var xls:ExcelFile = new ExcelFile();//生成xls文件 xls.loadFromByteArray(byteArray);//加载数据 if(xls == null) return; var sheet:Sheet = xls.sheets[0]; var xlsSet:ArrayCollection = sheet.values;//数据赋值(Classes that
MD5
- public static String MD5(String inStr) { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance("MD5"); } catch (Exception e) { System.out.println(e.toString()); e.p