ICode9

精准搜索请尝试: 精确搜索
  • 软件工程课设III——DAY 12021-05-31 13:01:11

    课设目标 完成一个有前端,后台和手机端的学生管理系统。 解决问题 1.github无法访问 具体方法:github无法访问的原因在于该网站修改了IP地址。在hosts文件中备案新网址即可恢复访问。 tips:hosts文件无法直接执行编辑操作。需要先建一个host文件然后再将其拷贝到本来的位置。(这还是

  • Objective-C 中不带加减号的方法2021-05-26 19:35:42

    显而易见的事实是,Objective-C 中,+ 表示类方法,- 表示实例方法。 但看别人代码过程中,还会发现一种,不带加减号的方法。 @implementation MyViewController void foo(){ printf("msg from foo..."); } - (void)loadView { [super loadView]; foo(); } @end   这种

  • 【阅读笔记】Implementation of tactical maneuvers with maneuver libraries2021-05-25 23:33:00

    Title:Implementation of tactical maneuvers with maneuver libraries 利用机动库实现战术机动 来源:航空学报英文版CSAA 2019出版 作者:School of Aerospace Information Engineering, Konkuk University   目录 摘要 1、Introduction 2. General maneuver libraries 3. Maneuv

  • 桥接模式2021-05-24 15:36:41

    桥接模式 桥接是一种结构型设计模式, 可将业务逻辑或一个大类拆分为不同的层次结构, 从而能独立地进行开发。 场景 这样一个问题: 客户给了你一个需求,于是使用一个类来实现(A); 客户需求变化,有两个算法实现功能,于是改变设计,我们通过一个抽象的基类,再定义两个具体类实现两个不同的算法(A1

  • VS2013未能正确加载microsoft.visualstudio.editor.implementation.editorpackage2021-05-24 12:07:37

    在用VS2013做项目,但是特别不顺利,这不,VS2013突然罢工了,连解决方案都打不开了,会出现如下的错误: 试了网上的各种解决方案,总算找到一个适合自己的,具体方法如下: 1.打开VS2013的“工具命令提示”,这个可以在VS2013的外部工具打开,但是喵哥没有添加(懒),具体的添加方法网上有不少,如果你们跟喵

  • Swagger 生成API doc Failed。2021-05-22 13:37:21

    1> HttpVerb and Route Atribute are required to decorate the Action 否则无法生成 api     namespace FirstWebAPI.Controllers{    [Route("api/[controller]")]    [ApiController]    public class HomeController : ControllerBase    {        [Rout

  • MITRE Implementation of ISO 12233 Spatial Frequency Response (SFR)2021-05-22 12:32:34

    MITRE Implementation of ISO 12233 Spatial Frequency Response (SFR) MITRE实现ISO 12233空间频率响应(SFR) 译者注:The MITRE Corporation是一个向美国政府提供系统工程、研究开发和信息技术支持的非营利性组织。本SPR算法由C语言开发且开源,代码下载链接 MITRE - Image Quali

  • 【K8S】Skupper 和 Submariner2021-05-17 11:30:16

    Skupper VIRTUAL APPLICATION NETWORKS FOR HYBRID CLOUD INTERCONNECT AMQP AS A NETWORK PROTOCOL There is an open-source implementation of a Virtual Application Network available from the Skupper project. The Skupper implementation is initially focu

  • ImageView2021-04-04 12:01:14

    默认 图片是放在ImageView控件里边的 <ImageView android:layout_width="200dp" android:layout_height="200dp" android:background="#ffff33" android:src="@drawable/img"> </ImageView> fitXY

  • 【Android】使用阿里云直播实现手机直播功能2021-03-19 18:29:51

    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 前言一、阿里云视频直播流程二、录制直播推流步骤1. 集成说明通过本地依赖方式集成SDK通过Maven依赖方式集成SDK 2. 使用说明RTMP推流推流失败的情况 三、观看直播总结 前言 最近公司项目里需要

  • gradle junit5.7.1 配置文件备份2021-03-16 10:29:07

    plugins {     id 'java'     id 'io.qameta.allure' version '2.8.1' } group = 'com.antpay' version = '1.0.0-SNAPSHOT' //sourceCompatibility = '15' def coreNGVersion="7.6.3" def allureVer

  • 智障家居之智障烧水装备----安卓App端的配置和设计2021-03-10 20:01:39

    智障家居之智障烧水装备----安卓App端的配置和设计 FoldableLayout配置 OKHttp3配置 具体设计UnityApp详细操作界面 FoldableLayout 配置 第一步,在build.gradle中添加上第三方库的依赖 implementation 'com.alexvasilkov:foldable-layout:1.2.1' implementatio

  • 安卓一些常用的小知识2021-03-09 19:59:53

    1、android gradle 3.0.0 中依赖指令implementation、api 的区别。 简单来说就是使用implementation指令的依赖不会传递。例如,有一个module为sdk,sdk依赖于gson库,有另一个module为test依赖于sdk,但是test不能直接引用到gson这个库,而api则可以做到。但是api既然有这优势必然有

  • ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the clas2021-02-28 13:34:13

    ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console… 此错为缺少Log4j的依赖 在pom.xml文件中添加如下依赖 <dependency> <groupId>org.apache.logging.log4j</group

  • android项目app中引用不到module下的jar包问题2021-02-27 09:29:57

    在module中导入了***.jar或者在线的包,在app中如果想引用这个jar里相关的内容时,发现根本引用不到,会提示你add library/*****.jar 一大串,你回车一下或者点一下没反应,根本没有用。 只需把module下gradle里相关jar的implementation改为api即可,因为implementation 修饰的只能在当

  • 【Androidx 更新问题】React Native 下安卓环境,Android Studio 构建失败2021-02-16 12:29:23

    目录: 版本说明当前配置信息问题以及对应解决办法 一、版本说明 本机系统: Mac Android studio: 3.6.2 "react": "16.8.3", "react-native": "0.59.9" 二、当前配置信息 2.1、Android Studio 相关配置如下 Android Gradle Plugin Version(3.4.0) 插件版本对应所需 Gradle Vers

  • 完美解决Direct local .aar file dependencies are not supported when building an AAR.2021-02-07 02:01:34

    最近gradle升级了,然后编译就出现了这个错误 Direct local .aar file dependencies are not supported when building an AAR. 然后求助了百度,给出了下面解决方案 在module的build.gradle文件中增加如下内容: android { ........ repositories { flatDir {

  • ANFT2021-01-29 22:34:16

    Android端 1.添加依赖 implementation ‘com.squareup.retrofit2:retrofit:2.9.0’ implementation ‘com.squareup.retrofit2:converter-gson:2.9.0’ implementation ‘com.squareup.okhttp3:okhttp:4.9.0’ implementation ‘com.squareup.okhttp3:logging-interceptor:4.

  • Mybatis 持久层框架2021-01-18 16:01:04

    gradle中添加mybatis依赖以及数据库驱动:      dependencies { //导入mybatis依赖 implementation('org.mybatis:mybatis:3.5.5') //导入mysql驱动 implementation('mysql:mysql-connector-java:8.0.20')}添加mybatis总配置: <?xml version="1.0" encodin

  • Android添加RecyclerView依赖库2021-01-17 13:00:30

    在app/build.gradle文件中dependencies里面添加 def recyclerview_version ="1.1.0" implementation "androidx.recyclerview:recyclerview:$recyclerview_version" // For control over item selection of both touch and mouse driven selection implementation

  • Android实现悬浮按钮弹出不同方向子按钮2021-01-05 16:00:09

    //圆形悬浮按钮 implementation 'com.android.support:design:28.0.0' implementation 'com.getbase:floatingactionbutton:1.10.1' <com.getbase.floatingactionbutton.FloatingActionsMenu android:id="@+id/multiple_actions&quo

  • 依赖注入框架Koin(一)知识预览2021-01-03 16:34:35

    一、基础概念 依赖注入(Dependency Injection)和控制反转(Inversion of Control)是同一个概念。 具体含义是:当某个角色(可能是一个Java实例,调用者)需要另一个角色(另一个Java实例,被调用者)的协助时,在传统的程序设计过程中,通常由调用者来创建被调用者的实例。但在Spring里,创建

  • No implementation found for int com.baidu.mapsdkplatform.comjni.tools.JNITools.initClass2020-12-25 14:01:35

    打开项目突然报 No implementation found for int com.baidu.mapsdkplatform.comjni.tools.JNITools.initClass 解决问题: jniLibs目录下只有一个armeabi目录下有so, 拷贝其他几个目录到同级目录,问题解决

  • idea导入项目问题:No implementation for org.apache.maven.model.path.PathTranslator was bound.2020-12-13 14:30:44

    环境 Windows10 jdk1.8 IDEA 2018.3.2 maven3.6.3 问题描述 原本在maven3.3.9和idea2018.3.2环境下开发,因为硬盘问题,重置电脑后,安装了最新版的maven3.6.3,idea还是idea2018.3.2,使用idea导入项目报错:Unable to import maven project: See logs for details,通过查看idea日志(help-->

  • APP接入友盟统计,不上报数据问题2020-12-07 12:59:29

    官方文档接入的流程大致如下: 主目录Build.gradle中buildscript 、allprojects都加入仓库地址: maven { url 'https://dl.bintray.com/umsdk/release' } app模块Build.gradle中加入: // 下面各SDK根据宿主App是否使用相关业务按需引入。 // OAID目前为目前国内市场主流的Andr

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有