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);

首先 byte[] 就是二进制流的。
你的意思是不是转换成二进制字符串?

将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转化成二进制的主要内容,如果未能解决你的问题,请参考以下文章

怎么把十六进制字符串转化成UNICODE字符

C++中的WCHAR_T怎么转化成CHAR?

C语言 把char 型 或者 整数转化成二进制 要怎么转

用C++实现把十进制小数转化成二进制小数

十进制转化为十六进制怎么算

如何将数组转化为字符串,编程怎么实现呢