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