有没有获取当前网速的api?
可以参考网络管理的介绍文档:https:developer.harmonyos.comcndocsdocumentationdocreferencesjsapisrequest0000001123753962
JSUI 怎么在第二个页面修改第一个页面的数据?
storage可参考:https:developer.harmonyos.comcndocsdocumentationdocreferencesjsapisstorage0000000000626080
JS UI 做网络请求时,能否有地方查看HTTP请求状态?
HTTP请求返回码可参考https:developer.harmonyos.comcndocsdocumentationdocreferencesjsapisnethttp0000001168304341中的ResponseCode
鸿蒙应用能访问webapi接口吗?
importhttpfrom'ohos.net.http';https:developer.harmonyos.comcndocsdocumentationdocreferencesjsapisnethttp0000001168304341
harmonyos legacy sdk 因连接失败,无法下载怎么回事?
如果不用代里,你的电脑是不是英文系统?如果你电脑系统语言是英文,会导致区域码是US,需要手动修改下区域码:在C:\Users\username\AppData\Roaming\Huawei\DevEcoStudio3.0\options路径下,打开country.region.xml,修改countryregionname为“CN”。
js怎么跳转java应用界面
关于JSFA如何调用PA及其具体示例,请参看文档:https:developer.harmonyos.comcndocsdocumentationdocguidesuijsfacallpa0000001050435961
java鸿蒙Tab框架 image图片怎么渲染的
参考以下代码可以将String转换成PixelMappublicstaticPixelMapgetMapPixelMap(StringurlString){InputStreamisnull;PixelMappixelMapnull;try{URLurlnewURL(urlString);URLConnectionconurl.openConnection();con.setConnectTimeout(TIMEOUT);iscon.getInputStream();ImageSourcesourceImageSource.create(is,newImageSource.SourceOptions());ImageSource.DecodingOptionsoptionsnewImageSource.DecodingOptions();options.des...