大约有 3,000 项符合查询结果(耗时:0.0066秒) [XML]

https://bbs.tsingfun.com/thread-2639-1-1.html 

【二进制】UrsAI2ByteArray 字节数组扩展:读写二进制数据,二进制文件读写...

...进制表示。HexPrefix属性指定在十六进制数字前面放置哪个字符串,默认设置为”0x”。可以使用以下方法插入和读取字符串:AddUTF8String、AddASCIIStringReadUTF8String、ReadASCIIStringReadUTF8StringUntil、ReadASCIIStringUntil UTF-8编码字符串通常...
https://www.tsingfun.com/it/cpp/2197.html 

使用 C++ 处理 JSON 数据交换格式 - C/C++ - 清泛网 - 专注C/C++及内核技术

... 中,包含 json.h 即可。 Json::Value 只能处理 ANSI 类型的字符串,如果 C++ 程序是用 Unicode 编码的,最好加一个 Adapt类来适配。 1、Value Json::Value 是jsoncpp 中最基本、最重要的类,用于表示各种类型的对象,jsoncpp 支持的对象...
https://www.fun123.cn/referenc... 

App Inventor 2 拓展参考文档 · App Inventor 2 中文网

...控内容变化和批量启用禁用组件 【文本处理】StringUtils 字符串工具扩展:强大的文本处理工具集 AI人工智能 【AI图像识别】PersonalImageClassifier (PIC) 拓展:自行训练AI图像识别模型,开发图像识别分类App ...
https://www.tsingfun.com/it/ai2/2705.html 

AppInventor2如何通过socket给网络发16进制的数据? - App Inventor 2 中文...

...消息时,hexaStringMode设为 true,例如:0x012 —> “303132” 字符串发送,接收的数据也是16进制字符串。 文档地址:https://www.fun123.cn/reference/ ... ctivity.html#SocketAppInventor,AppInventor20
https://bbs.tsingfun.com/thread-1376-1-1.html 

HC-05 蓝牙模块开发 - 创客硬件开发 - 清泛IT社区,为创新赋能!

...,非UTF-8的,如“你好”对应16进制:C4 E3 BA C3。而AI2中文字符串默认是UTF-8编码的(E4 BD A0 E5 A5 BD )。 如果遇到 Error 507 错误: 极有可能是硬件问题:
https://www.fun123.cn/reference/extensions/ 

App Inventor 2 拓展参考文档 · App Inventor 2 中文网

...控内容变化和批量启用禁用组件 【文本处理】StringUtils 字符串工具扩展:强大的文本处理工具集 AI人工智能 【AI图像识别】PersonalImageClassifier (PIC) 拓展:自行训练AI图像识别模型,开发图像识别分类App ...
https://www.fun123.cn/reference/iot/spp.html 

App Inventor 2 经典蓝牙(SPP) 硬件接入:hc05 · App Inventor 2 中文网

...,非UTF-8的,如“你好”对应16进制:C4 E3 BA C3。而AI2中文字符串默认是UTF-8编码的(E4 BD A0 E5 A5 BD )。 参与讨论 如有问题,社区点此回帖参与讨论。 您的改进建议 联系...
https://bbs.tsingfun.com/thread-2702-1-1.html 

app inventor 2 有HexToString组件吗? - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!

同这篇帖子《什么是 Hex 编码方式?》:https://bbs.tsingfun.com/thread-2700-1-1.html 使用 ByteArray 拓展 的 ToHex 方法可以实现将无符号数字转换为其十六进制表示。
https://www.fun123.cn/reference/iot/MQTT.html 

App Inventor 2 UrsPahoMqttClient 拓展 - 物联网轻量级MQTT协议 · App Inventor 2 中文网

... 默认发布方式Topic: 消息主题。Message: 消息字符串。RetainFlag: 消息是否为保留消息。QoS: 发布消息的服务质量。 简单发布Topic: 消息主题。Message: 消息字符串。RetainFlag: 在内部设置为 false,QoS 为 0。...
https://www.tsingfun.com/it/cpp/1210.html 

[精华] VC中BSTR、Char和CString类型的转换 - C/C++ - 清泛网 - 专注C/C++及内核技术

...BSTR,CString转换成BSTR,BSTR转换成CString,ANSI、Unicode和宽字符之间的转换...1、char*转换成CString 若将char*转换成CString,除了直接赋值外,还可使用CString::format进行。例如: char chArray[] = "This is a test"; char * p = "This is a test"; 或 ...