oozie ErrorCode含义

  • Post author:
  • Post category:其他

E0000(XLog.STD,“系统属性'oozie.home.dir”未定义”) E0001(XLog.OPS,“无法创建运行目录,{0}”) E0002(XLog.STD,“系统在安全模式”) E0003(XLog.OPS,“ Oozie主目录必须是绝对路径[{0}]”)) E0004(XLog.OPS,“ Oozie主目录不存在[{0}]”) E0010 (XLog.OPS,“无法初始化日志…

继续阅读 oozie ErrorCode含义

解决npm install安装慢的问题

  • Post author:
  • Post category:其他

解决npm install安装慢的问题 国外镜像安装东西会很慢,可以修改配置切换国内镜像 用 get命令查看registry npm congfig get registry 结果为 http://registry.npmjs.org 用set命令换成阿里的镜像就可以了 npm config set registry https://registry.npm.taobao.org 再执行命令 np…

继续阅读 解决npm install安装慢的问题

weblogic和oracle版本,weblogic oracle 查看版本

  • Post author:
  • Post category:其他

方法一:可去安装目录找到配置文件registry.xml,找到如下配置即可 我的目录lopt/bea92/registry.xml 方法二:可通过命令获得 $ cd /lopt/bea92sp2/weblogic92/server/lib $ java -cp weblogic.jar weblogic.version output: WebLogic Server 9.2 MP2  Mon Ju…

继续阅读 weblogic和oracle版本,weblogic oracle 查看版本

springboot文件上传 Required request part ‘file’ is not present

  • Post author:
  • Post category:其他

springboot文件上传 如果报错如下: The field file exceeds its maximum permitted size of 1048576 bytes. 或者如下: Required request part 'file' is not present 上面的报错可能是因为spring boot 内置的MultipartResolver有点问题,可以这样解决: 1、显性…

继续阅读 springboot文件上传 Required request part ‘file’ is not present

stm32103C8T6通过I2C接口实现温湿度(AHT20)的采集与OLED显示

  • Post author:
  • Post category:其他

文章目录 一、I2C总线协议 1.1 什么是I2C协议 1.2 I2C协议的物理层和协议层 1.3 软件I2C和硬件I2C 二、实现AHT20采集程序 三、温湿度采集——OLED显示 3.1 添加OLED显示代码 3.2 添加功能代码 3.3 结果展示 四、参考文献 一、I2C总线协议 1.1 什么是I2C协议 I2C 通讯协议(Inter-Integrated Circuit)是由 Phiilp…

继续阅读 stm32103C8T6通过I2C接口实现温湿度(AHT20)的采集与OLED显示

Matlab快速入门——矩阵的高级学习

  • Post author:
  • Post category:其他

学习目标:掌握高级的矩阵知识 逆矩阵和广义逆矩阵 clear all; A=magic(4) B=[2 4;6 4] C=inv(A) inv(B) D=pinv(B) B*D*B 求矩阵的秩   跟线性相关有关系   反映的是是否是线性相关  满秩则线性无关 clear all; A=magic(4) B=[5 4 3;1 2 3;7 7 7] r1=rank(A) r2=rank(B) 矩阵的…

继续阅读 Matlab快速入门——矩阵的高级学习

递归贪心算法c++源码实现

  • Post author:
  • Post category:其他

//递归贪心算法的实现 //test1.cpp #include <iostream> using namespace std; void RecursiveActivitySeletor(int* s,int *f,int i,const int n) { int m=i+1; while(m<=n&&s[m]<f[i]) m+=1; if (m<=…

继续阅读 递归贪心算法c++源码实现

#单片机# —— stc89c52引脚说明

  • Post author:
  • Post category:其他

STC89C52功能简述: STC89C52 是一种低功耗、高性能CMOS8位微控制器,具有8K在系统可编程Flash存储器。使用高密度非易失性存储器技术制造,与工业80C51产品指令和引脚完全兼容。片上Flash允许程序存储器在系统可编程,亦适于常规编程器。在单芯片上,拥有灵巧的8位CPU和在线系统可编程Flash,使得STC89C52为众多嵌入式控制应用系统提供高灵活、超有效的解决方案。STC…

继续阅读 #单片机# —— stc89c52引脚说明

使用opencv实现直线提取

  • Post author:
  • Post category:其他

void mapCallback(const nav_msgs::OccupancyGrid& msg) { ROS_INFO("I heard frame_id: [%s]", msg.header.frame_id.c_str()); resolution = msg.info.resolution; width = msg.info.width; height = msg.info.…

继续阅读 使用opencv实现直线提取

获得屏幕的宽度和高度

  • Post author:
  • Post category:其他

获得屏幕的宽度和高度有很多种方法 1、通过WindowManager获取 DisplayMetrics dm = new DisplayMetrics(); heigth = dm.heightPixels; width = dm.widthPixels; 2、通过Resources获取 DisplayMetrics dm = getResources().getDisplayMetrics();…

继续阅读 获得屏幕的宽度和高度