会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
袁丫头
博客园
首页
新随笔
联系
订阅
管理
2022年10月7日
App自动化环境搭建
摘要: 一、什么是Appium? Appium是一个开源的、跨平台的自动化测试工具,可用于app的自动化测试 支持Android,IOS等操作系统下的app自动化测试 官网地址http://appium.io/ Github地址https://github.com/appium/appium 二、App自动
阅读全文
posted @ 2022-10-07 18:29 袁丫头
阅读(263)
评论(0)
推荐(0)
2022年9月12日
文件流以及Excel解析
摘要: 1、excel的常用操作 package com.lemon.excle; import org.apache.poi.ss.usermodel.*; import java.io.FileInputStream; import java.io.FileNotFoundException; publ
阅读全文
posted @ 2022-09-12 17:50 袁丫头
阅读(228)
评论(0)
推荐(0)
TestNG
摘要: 一、TestNG技术 maven地址:https://mvnrepository.com/artifact/org.testng/testng/7.0.0 文档地址:http://testingpai.com/article/1595507259282 1、TestNg使用 package com.
阅读全文
posted @ 2022-09-12 15:54 袁丫头
阅读(55)
评论(0)
推荐(0)
2022年9月11日
Maven项目
摘要: 一、maven相关设置 1、下载apache-maven-3.6.1, 2、解压repo放入到maven中 3、在apache-maven-3.6.1\conf替换settings,然后设置为自己的镜像仓库 二、创建maven项目 1、点击File->New->Project 2、选择Maven中的
阅读全文
posted @ 2022-09-11 20:53 袁丫头
阅读(229)
评论(0)
推荐(0)
API
摘要: 可以下载JDK API1.6:https://blog.csdn.net/life_ding/article/details/122374597 下载好后,点击索引,然后进行输入关键字 一、String 常用方法: equals:判断字符串是是否一样,大小写敏感split:切割replace:替换s
阅读全文
posted @ 2022-09-11 20:25 袁丫头
阅读(71)
评论(0)
推荐(0)
面向对象
摘要: 一、方法 1、方法定义:public static 返回值 方法名(参数列表) public class MethodDemo { public static void main(String[] args) { method(10, 5); int res = sum(200, 10); Syst
阅读全文
posted @ 2022-09-11 15:22 袁丫头
阅读(27)
评论(0)
推荐(0)
2022年9月10日
循环
摘要: 一、if判断 // 格式1:int age = 27;if (age > 18) { System.out.println("上网浏览信息~ Github.com 全球最大的同性交友网址");}// 格式2:if (age < 18) { System.out.println("继续上网浏览信息~
阅读全文
posted @ 2022-09-10 15:03 袁丫头
阅读(81)
评论(0)
推荐(0)
运算符
摘要: 算数运算符: int a = 10;int b = 5;System.out.println(a + b); //+ 数字相加 字符串拼接System.out.println(a - b);System.out.println(a * b);System.out.println(a / 3.0);
阅读全文
posted @ 2022-09-10 13:54 袁丫头
阅读(40)
评论(0)
推荐(0)
变量
摘要: 一、基本数据类型 boolean(布尔值): boolean bool1 = true;boolean bool2 = false;System.out.println(bool1);System.out.println(bool2);bool1 = false; //变量重赋值System.out
阅读全文
posted @ 2022-09-10 13:13 袁丫头
阅读(61)
评论(0)
推荐(0)
Java语言的简单介绍
摘要: 一、下载jdk8的安装包 JDK1.8下载 Java SE Development Kit(JDK1.8) 8u131 java8 64位 java运行库正式版 下载-脚本之家 (jb51.net) 二、安装jdk 打开jdk的安装包,接下去跟着提示一直点下一步就行了。 这里可以选择安装位置,建议按
阅读全文
posted @ 2022-09-10 09:13 袁丫头
阅读(158)
评论(0)
推荐(0)
下一页
公告