码迷,mamicode.com
首页 >  
搜索关键字:dea    ( 2437个结果
JS字符串方法
JS字符串方法 1、toLowerCase(): 把字符串转为小写,返回新的字符串。 var str="Hello World";var str1=str.toLowerCase();console.log(str); //Hello Worldconsole.log(str1); //hello ...
分类:Web程序   时间:2021-01-12 11:23:06    阅读次数:0
1004.idea打jar包
1.创建包和类 package com.example.HelloWorld; public class HelloWorld 2.运行方法 3.打jar包 File | Project Settings | Artifacts 选择主类 OK | OK 4.build artifacts buil ...
分类:编程语言   时间:2021-01-12 11:07:35    阅读次数:0
直播6-写一个管理系统
# 函数版学员管理系统 class System1(): info = [] def info_print(self): print('请选择功能:' + '-' * 30) print(' 1、添加学员\t', '2、删除学员\t', '3、修改学员\t', '4、查询学员\n', '5、显示学员 ...
分类:其他好文   时间:2021-01-11 10:39:10    阅读次数:0
Springboot_Junit4_单元测试空指针
单元测试检查点: @RunWith(SpringRunner.class) @SpringBootTest @Autowired @Test @Transactional @RunWith(SpringRunner.class) @SpringBootTest public class Test { ...
分类:编程语言   时间:2021-01-08 11:42:01    阅读次数:0
idea maven java不支持 发行版本5
maven 默认jdk为1.5 在配置文件 pom.xml 指定实际使用的jdk版本 <properties> <maven.compiler.source>13</maven.compiler.source> <maven.compiler.target>13</maven.compiler.ta ...
分类:编程语言   时间:2021-01-07 12:21:57    阅读次数:0
Android 逆向分析(二):动态调试实现
使用AndroidStudio 4.0以下版本,安装插件:ideasmali。 反编译apk,在AndroidMainfest.xml中添加debuggable=“true” 在smail文件中找到oncreate()并添加 invoke-static{},Landroid/os/Debug;->w ...
分类:移动开发   时间:2021-01-06 12:30:15    阅读次数:0
intellij idea 如何一键清除所有断点
1.在idea左下方找到"View Breakpoints"按钮,点击打开 2.点击"Java Line Breakpoints"前方的全选框,取消全选. 3.点击上方"-"即"Remove"按钮,即可取消所有Breakpoints. 4.清除断点后,点击"Done". ...
分类:其他好文   时间:2021-01-06 12:25:03    阅读次数:0
centos8 下删除网桥 docker0
在一台 centos8 的机器上,要修改 docker0 的 ip, 编辑 /etc/docker/deamon.json 在其中加入 bip, 然后重启 docker 服务,无法把 ip 改过来(重启了服务器也不行)。于是根据网上的一些经验,要删除 docker0, 再重启 docker. 但是 ...
分类:其他好文   时间:2021-01-06 12:03:15    阅读次数:0
Databases Informatics Assignment 2
University of Sussex Autumn 2020InformaticsDatabasesAssignment 2 (Deadline 04.01.2021, 4pm)This assessed coursework should be submitted online as Canv ...
分类:数据库   时间:2021-01-05 11:12:30    阅读次数:0
IDEA修改maven的默认配置
IDEA2020FILE->NewprojectSettings->SettingsfornewProjectsBulid,Execution,Deployment->BuildTools->mavne里面配置默认maven配置IDEA2019FILE-->otherSetting
分类:其他好文   时间:2021-01-02 10:30:50    阅读次数:0
2437条   上一页 1 ... 5 6 7 8 9 ... 244 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!