1 2 3 4 5 ··· 18 下一页
摘要: //创建普通通知 String channelId = "测试渠道"; if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) { Notification notification = new Notifi 阅读全文
posted @ 2022-10-06 14:47 laremehpe 阅读(28) 评论(0) 推荐(0) 编辑
2024年7月15日
摘要: 目录结构: |-HelloWorld |--src | main | java | main.java | cpp //和java目录同级 | CMakeLists.txt //cmake配置文件 | src // c\c++ 源文件目录 | HelloWorld.cpp | build // 生成 阅读全文
posted @ 2024-07-15 01:32 laremehpe 阅读(2) 评论(0) 推荐(0) 编辑
2024年7月13日
摘要: #include <stdio.h> #include <iostream> #include <fstream> #include <string> using namespace std; struct ID3V2 { char tag[3]; char version; char subVer 阅读全文
posted @ 2024-07-13 16:24 laremehpe 阅读(3) 评论(0) 推荐(0) 编辑
2024年6月1日
摘要: @Component public class StaticResourcePathResolver { private final ServletContext servletContext; @Autowired public StaticResourcePathResolver(Servlet 阅读全文
posted @ 2024-06-01 09:39 laremehpe 阅读(41) 评论(0) 推荐(0) 编辑
2024年5月27日
摘要: #include "iostream" #include "vector" #include "string" using namespace std; vector<string> split(string txt, string splitor) { vector<string> strList 阅读全文
posted @ 2024-05-27 15:16 laremehpe 阅读(3) 评论(0) 推荐(0) 编辑
2024年5月18日
摘要: 引用: /etc/profile为系统的每个用户设置环境信息和启动程序,当用户第一次登录时,该文件被执行,其配置对所有登录的用户都有效。当被修改时,必须重启才会生效。 /etc/environment系统的环境变量,/etc/profile是所有用户的环境变量,前者与登录用户无关,后者与登录用户有关 阅读全文
posted @ 2024-05-18 10:03 laremehpe 阅读(11) 评论(0) 推荐(0) 编辑
2024年5月15日
摘要: 文件路径: C:\Users\laremehpe\.gradle\init.gradle allprojects { repositories { def REPOSITORY_URL = 'https://maven.aliyun.com/repository/gradle-plugin' all 阅读全文
posted @ 2024-05-15 10:40 laremehpe 阅读(195) 评论(0) 推荐(0) 编辑
2024年4月27日
摘要: cell宽度由该列中最宽的元素决定 cell高度由该行中最高的元素决定 并且 高度不够的元素会被居中 在css、style设置的宽高仅在内容元素没有超出设置的宽高时候有效 阅读全文
posted @ 2024-04-27 17:06 laremehpe 阅读(1) 评论(0) 推荐(0) 编辑
2024年4月24日
摘要: 解决方案: 原因:vim无法保存用户操作信息到.viminfo文件,vim无操作权限 思路: 修改用户目录下的.viminfo文件权限 命令: chmod 777 .viminfo 找到当前用户目录: echo $HOME 查看隐藏文件: ls -a 若系统提示.viminfo: Read-only 阅读全文
posted @ 2024-04-24 23:58 laremehpe 阅读(148) 评论(0) 推荐(0) 编辑
2024年4月19日
摘要: 官网说明:composer官网地址 下载安装文件: wget https://getcomposer.org/installer 下载的文件名叫installer,重命名为php文件: mv installer php-setup.php php执行安装文件: php php-setup.php 然 阅读全文
posted @ 2024-04-19 23:10 laremehpe 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 直接上代码: <?php namespace app\controller; use app\BaseController; // require 'vendor/autoload.php'; use Alipay\EasySDK\Kernel\Factory; use Alipay\EasySDK 阅读全文
posted @ 2024-04-19 10:01 laremehpe 阅读(30) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 18 下一页