laya怎么把as3swf转化成二进制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laya怎么把as3swf转化成二进制相关的知识,希望对你有一定的参考价值。
参考技术A LayaFlash资源转换工具的作用是将Flash CS系列动画工具发布的swf文件经过解析转换成LayaFlash发布的H5最终能使用的素材文件。(C#)把一个byte数组转换成一个二进制流!
DPFP.Template Template;
byte[] fingerPrintBytes =null;
Templates.Serialize(ref fingerPrintBytes);
我上面的fingerPrintBytes已经获取了数组数据,接着我上面的东西,怎么把fingerPrintBytes转成一个二进制流?
以及转换回来成DPFP.Template的方法!
或者还有其他更好的方法。。。? 提供满意答案者加分!
public class Template : Data
public Template();
public Template(Stream DataStream);
---------------------------------------------------------
public abstract class Data
protected byte[] _Data;
public Data();
public Data(Stream DataStream);
public byte[] Bytes get;
public int Size get;
public void DeSerialize(byte[] ArrayOfBytes);
public void DeSerialize(Stream DataStream);
public byte[] Serialize(ref byte[] ArrayOfBytes);
public Stream Serialize(Stream DataStream);
你的意思是不是转换成二进制字符串?
将fingerPrintBytes 代入 bytesTest
strResult就是二进制字符串
//byte[]转为二进制字符串表示
byte[] bytesTest =new byte[]16,18,33;
string strResult=string.Empty;
string strTemp;
for(int i=0;i<bytesTest.Length;i++)
strTemp=System.Convert.ToString(bytesTest[i], 2);
strTemp =strTemp.Insert(0,new string('0',8-strTemp.Length));
strResult+=strTemp;
参考技术A 转换成流
MemoryStream stream = new MemoryStream(fingerPrintBytes);
你的DPFP.Template是什么对象
以上是关于laya怎么把as3swf转化成二进制的主要内容,如果未能解决你的问题,请参考以下文章