首页 > 移动平台
flink1.11报错:java.lang.IllegalStateException: No ExecutorFactory found to execute the application
一. 报错信息 Exception in thread "main" java.lang.IllegalStateException: No ExecutorFactory found to execute the application. at org.apache.flink.core.exec ...
分类:移动平台   时间:2021-06-27 09:38:54    收藏:0  评论:0  赞:0  阅读:74
为app建立一个浏览器窗口
为了显示一个网页,我做了一个窗口,同样参考前面写过的为Android做一个ShowModal窗口。先看一下代码: unit Form.WebBrowser; interface uses System.SysUtils, System.Types, System.UITypes, System.Cl ...
分类:移动平台   时间:2021-06-27 09:34:02    收藏:0  评论:0  赞:0  阅读:26
Vue axios封装使用技巧
技术概述 在使用axios进行前后端通信的时候,会有许多重复的代码,且接口可能在多处被使用,所以对于接口的封装非常有必要。这样在团队协作的过程中就能有效地控制接口的改变。 技术详述 axios接口封装 src/utils/request.js 封装axios的基础url以及请求、响应拦截器 impo ...
分类:移动平台   时间:2021-06-27 09:31:39    收藏:0  评论:0  赞:0  阅读:28
入门-app自动化
appium官网:https://appium.io/docs/en/about-appium/getting-started/ 了解启动参数 https://appium.io/docs/en/writing-running-appium/caps/ 包括通用的和安卓和ios独有. 主要启动参数了 ...
分类:移动平台   时间:2021-06-26 23:48:02    收藏:0  评论:0  赞:0  阅读:42
自动部署Nagios NRPE
#!/bin/bash#writed by sery(wx:formyz),in 2021-6-26 yum -y install gcc gcc-c++ make openssl openssl-devel wget net-tooluseradd nagioschmod +x /etc/rc.d/rc.local #install nrpecd?if [[ ! -f nrpe-4.0.2.ta
分类:移动平台   时间:2021-06-26 23:30:55    收藏:0  评论:0  赞:0  阅读:22
PC端操作系统、移动端操作系统、嵌入式操作系统
左侧部分已是历史的操作系统,右侧的还是活跃的操作系统。安卓系统Android 是Google开发的基于Linux平台的开源手机操作系统。它包括操作系统、用户界面和应用程序—— 移动电话工作所需的全部软件,而且不存在任何以往阻碍移动产业创新的专有权障碍。iOSiOS是由苹果公司开发的移动操作系统[1] ...
分类:移动平台   时间:2021-06-26 17:11:20    收藏:0  评论:0  赞:0  阅读:21
uni-app实现扫码签到
1 uni.scanCode({ 2 success: res => { 3 this.$http({ 4 url: '/checkin/scanSign', 5 data: { 6 codeInfo: res.result 7 }, 8 method: 'GET', 9 header: { 10 ...
分类:移动平台   时间:2021-06-26 16:52:49    收藏:0  评论:0  赞:0  阅读:28
C++ Builder关于Application之ProcessMessages方法和Terminated属性
先看一个例子和程序截图: 源代码如下: Unit1.h文件 // #ifndef Unit1H #define Unit1H // #include <Classes.hpp> #include <Controls.hpp> #include <StdCtrls.hpp> #include <For ...
分类:移动平台   时间:2021-06-26 12:05:04    收藏:0  评论:0  赞:0  阅读:17
Invalid bound statement (not found): com.example.demo.mapper.B18040208Mapper.search
这种报错,启动的时候一般不会报错,在你调用到对应的服务的时候,找不到对应的mapper文件时,报错。 有一种原因是xxxMapper.xml文件编写有问题,这个原因这里不做讨论 第二种:对mapper.xml文件未加扫描 启动springboot对象上添加:@MapperScan("com.exam ...
分类:移动平台   时间:2021-06-26 11:59:30    收藏:0  评论:0  赞:0  阅读:27
ASP.NET Core 根据环境变量支持多个 appsettings.json配置文件 (开发和生产)
新建一个项目,web根目录会出现一个 appsettings.json 配置文件, 此时添加--新建项,输入 appsettings.Development.json 再新增一个,appsettings.Production.json 最后新增完毕,会发现 appsettings.json 下面有两 ...
分类:移动平台   时间:2021-06-26 11:57:22    收藏:0  评论:0  赞:0  阅读:23
ios下overflow:hidden 无效
ios下overflow:hidden 无效原因及解决方案 在ipad和ios上设置overflow:hidden不起作用,目前网上找到的方法是给父级元素添加position:fixed,比如这样: body { height: 100%; overflow: hidden; width: 100% ...
分类:移动平台   时间:2021-06-25 22:20:18    收藏:0  评论:0  赞:0  阅读:20
Android Studio 升级到4.2.1后ButterKnife失效不能用的问题解决
升级到4.2.1后发现ButterKnife失效了,结合网上找到的别的方法,只需要把下载的插件文件给挪到别的地方就行了,以下是操作方法 把位于Application Support里面的插件文件.jar给挪到应用程序下AS的插件文件夹中就行了,然后重启,ButterKnife就行了 ...
分类:移动平台   时间:2021-06-25 17:18:38    收藏:0  评论:0  赞:0  阅读:232
using thymeleaf之七设置属性的值(th:attr/th:value/th:alt-title/th:attrappend/th:attrprepend/th:checked)
原文来自:https://blog.csdn.net/sun_jy2011/article/details/40215423 7.1 th:attr 用于设置其他属性的值,但不是所有属性的值都能设置,如text。 <form action="subscribe.html" th:attr="acti ...
分类:移动平台   时间:2021-06-25 17:13:03    收藏:0  评论:0  赞:0  阅读:18
.net里面<app.config>中value值不能填写特殊符号问题
配置app.config或web.config的时候,经常要填写value值, 但是value值不能包含特殊字符,需要转义, 分享一下转义字符 App.config 实际上是 xml 文件,在标准 xml 文件中特殊字符要进行 HTML 转义。 规则如图: ...
分类:移动平台   时间:2021-06-25 17:04:12    收藏:0  评论:0  赞:0  阅读:24
android WebView 保存cookie
public void setCookies(String cookiesPath) { Map<String, String> cookieMap = new HashMap<>(); String cookie = getSharedPreferences("cookie", Context.M ...
分类:移动平台   时间:2021-06-25 16:59:08    收藏:0  评论:0  赞:0  阅读:18
freetype android交叉编译
项目中Opencv需要显示中文,由于本身并不支持,所以需要借助第三方的库freetype来实现。这个库虽然android本身也有使用,但并没有暴露接口给外部使用。 编译环境 wsl ubuntu 20.04 freetype 2.10.4 ndk-r17c freetype下载地址,这里使用最新版本 ...
分类:移动平台   时间:2021-06-25 16:43:27    收藏:0  评论:0  赞:0  阅读:34
Android web View 监听上传图片事件
伪代码贴上 @Override protected void onCreate(Bundle savedInstanceState) { mWebView = (WebView) findViewById(R.id.webview); //获得webView initWebView(); } pri ...
分类:移动平台   时间:2021-06-25 13:26:07    收藏:0  评论:0  赞:0  阅读:10
Android ApkToolPlus一个可视化的跨平台 apk 分析工具
ApkToolPlus 是一个可视化的跨平台 apk 分析工具。 项目地址:https://github.com/linchaolong/ApkToolPlus 1. ApkTool apk 反编译,回编译,签名。 apktool 2. Apk 加固 dex 加密,防逆向,防止二次打包。(注意:该功 ...
分类:移动平台   时间:2021-06-25 13:23:14    收藏:0  评论:0  赞:0  阅读:7
移动端适配的一些理解
rem是相对于根元素html的font-size。 1rem = html的font-size 移动端适配通常使用rem。 在开发时,设计稿通常为750px物理像素 ,所以用750设计稿举例对应的iphone6的375px逻辑像素。(物理像素是逻辑像素的2倍) 375 / 7.5 = 50px(37 ...
分类:移动平台   时间:2021-06-25 12:30:28    收藏:0  评论:0  赞:0  阅读:9
SpringBoot项目运行时报错:Command line is too long. Shorten command line for RootApplication or also for Spring Boot default configuration.
Error running 'RootApplication': Command line is too long. Shorten command line for RootApplication or also for Spring Boot default configuration. 解决方 ...
分类:移动平台   时间:2021-06-25 12:24:50    收藏:0  评论:0  赞:0  阅读:16
162412条   上一页 1 ... 48 49 50 51 52 ... 8121 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!