The aardio notes I just learned and compiled recently are continuously updated

Don't talk nonsense, just go ahead!
First introduce the aardio official website address,
third-party forum website,
you can understand first! And then start the project

Aardio Chinese conversion problem

aardio内核现在使用的代码是utf8,如果返回的编码是gbk的,显示出来就是乱码。

解决方法:r=string.fromto(r,936,65001); //GBK转UTF8

其中936是GBK的代码页,65001是utf8的代码页。

使用::Kernel32.GetACP()可以获取本地计算机的默认代码页。自己尝试了一下,返回的是936

Remove table data

tab.x = null; //删除tab.x

Modulation method

import string;
//调试数据用的方法
string.save("D:/go/addio/"+"test"+'.txt',s)

http request with parameters

import inet.whttp;
//另外请使用 whttp.addHeaders,而不是 whttp.headers
whttp.addHeaders = "xxxxx"

To be updated later. . .

Guess you like

Origin blog.csdn.net/weixin_37254196/article/details/108471552