会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Txwtech
鸿蒙系统APP开发,QT,C#,python,视觉开发 cdtxw@foxmail.com
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
59
60
61
62
63
64
65
66
67
···
134
下一页
2023年12月26日
linux拷贝文件复制文件夹拷贝目录
摘要: cp .-r /aa1 ./aa2 ./点和斜杠表示当前目录,-r表示拷贝目录 把当前目录的aa1复制到aa2 复制文件到指定文件夹 cp test2.txt ../ttx ../两个点和斜杠,表示上一级目录 复制test2.txt 到上一级目录的ttx里面 mv移动命令 mv ./aa1 ./aa
阅读全文
posted @ 2023-12-26 13:21 txwtech
阅读(131)
评论(0)
推荐(0)
2023年12月21日
c++网络编程tcp并发通信
摘要: 一、多进程--实现TCP并发通信 实现TCP服务器并发处理任务,可以使用多线程或多进程解决。 父(进)线程负责等待并接受客户端链接。 子(进)线程完成通信。 服务端: #include <stdio.h> #include <arpa/inet.h> #include <unistd.h> #inc
阅读全文
posted @ 2023-12-21 08:21 txwtech
阅读(299)
评论(0)
推荐(0)
2023年12月16日
鸿蒙app java代码构建用户界面
摘要: 鸿蒙app java代码构建用户界面 background_ability_main.xml <?xml version="1.0" encoding="UTF-8" ?> <shape xmlns:ohos="http://schemas.huawei.com/res/ohos" ohos:sha
阅读全文
posted @ 2023-12-16 21:54 txwtech
阅读(171)
评论(3)
推荐(0)
DevEco studio 本地模拟器Haxm安装失败
摘要: DevEco studio 本地模拟器Haxm安装失败 解决参考文档: https://developer.harmonyos.com/cn/docs/documentation/doc-guides/faq-local-emulator-0000001116085454#section870872
阅读全文
posted @ 2023-12-16 15:30 txwtech
阅读(604)
评论(0)
推荐(0)
2023年12月14日
c#操作海康相机报错Enumerate devices fail!
摘要: int nRet = MyCamera.MV_CC_EnumDevices_NET(MyCamera.MV_GIGE_DEVICE | MyCamera.MV_USB_DEVICE, ref m_stDeviceList); if (0 != nRet) { ShowErrorMsg("Enumer
阅读全文
posted @ 2023-12-14 17:07 txwtech
阅读(488)
评论(0)
推荐(0)
2023年12月13日
使用“NuGet 程序包还原”可下载这些程序包OpenCvSharp4.runtime.win.4.5.3.20211228
摘要: 严重性 代码 说明 项目 文件 行 禁止显示状态错误 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 ..\package
阅读全文
posted @ 2023-12-13 08:52 txwtech
阅读(306)
评论(0)
推荐(0)
2023年12月12日
c# float 取小数点后两位三位保留位数字符串
摘要: c# float 取小数点后两位保留位数 print((0.123456789).ToString("F2") + "保留2位小数"); print((0.123456789).ToString("F3") + "保留3位小数"); print((0.123456789).ToString("F4"
阅读全文
posted @ 2023-12-12 14:37 txwtech
阅读(1027)
评论(0)
推荐(0)
2023年12月11日
华为AI计算框架昇思MindSpore零基础快速入门
摘要: 华为AI计算框架昇思MindSpore零基础快速入门 (上) https://developer.huaweicloud.com/develop/aigallery/home.html AI专家一席谈:复用算法、模型、案例,AI Gallery带你快速上手应用开发 盘古大模型 学习课程 翻译 搜索
阅读全文
posted @ 2023-12-11 10:17 txwtech
阅读(76)
评论(3)
推荐(0)
2023年12月10日
鸿蒙app启动远程平板报错解决方法The type of the target device does not match the deviceType configured in the config.json file of the selected module
摘要: The type of the target device does not match the deviceType configured in the config.json file of the selected module. 在entry->src->main->config.json,
阅读全文
posted @ 2023-12-10 09:35 txwtech
阅读(756)
评论(0)
推荐(0)
2023年12月9日
鸿蒙app获取文本控件按钮控件_修改控件名称_按钮触发事件_提示信息显示
摘要: 鸿蒙app获取文本控件按钮控件_修改控件名称_按钮触发事件_提示信息显示 package com.example.myapplication.slice; import com.example.myapplication.ResourceTable; import ohos.aafwk.abilit
阅读全文
posted @ 2023-12-09 21:55 txwtech
阅读(148)
评论(0)
推荐(0)
上一页
1
···
59
60
61
62
63
64
65
66
67
···
134
下一页