优雅的写init方法

2024-09-04 20:58
文章标签 init 方法 优雅

本文主要是介绍优雅的写init方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

怎么写出高质量的init方法,以下是demo可参考实现,代码实现。
在这里插入图片描述在这里插入图片描述

public class BaseTestController {private UnitTest unitTest;public void init(String url, String accessToken){unitTest = UnitTest.getNewInstance();unitTest.setHost(url);unitTest.setClientKey(accessToken);}public void init(String url,String archiveId,String userMobile){unitTest = UnitTest.getNewInstance();unitTest.setHost(url);unitTest.setArchiveId(archiveId);unitTest.setUserMobile(userMobile);setClientKey();}public void init(String url,String simulatedLandingUrl,String archiveId,String userMobile){unitTest = UnitTest.getNewInstance();unitTest.setHost(url);unitTest.setArchiveId(archiveId);unitTest.setUserMobile(userMobile);unitTest.setSimulatedLandingUrl(simulatedLandingUrl);setClientKey();}public void initNew(String url,String serverAddr,String userMobile, String password){unitTest = UnitTest.getNewInstance();unitTest.setHost(url);unitTest.setPassword(password);unitTest.setUserMobile(userMobile);unitTest.setSimulatedLandingUrl(serverAddr);unitTest.setClientKey(loginNew(unitTest.getUserMobile(), unitTest.getPassword()));}public void init(String url,String simulatedLandingUrl,String archiveId,String userMobile,String password){unitTest = UnitTest.getNewInstance();unitTest.setHost(url);unitTest.setArchiveId(archiveId);unitTest.setUserMobile(userMobile);unitTest.setPassword(password);unitTest.setSimulatedLandingUrl(simulatedLandingUrl);setClientKey();}public void initKdb(String url, String simulatedLandingUrl,String userMobile,String password){unitTest = UnitTest.getNewInstance();unitTest.setHost(url);unitTest.setSimulatedLandingUrl(simulatedLandingUrl);unitTest.setUserMobile(userMobile);unitTest.setPassword(password);setKdbClientKey();}private void setKdbClientKey() {unitTest.setClientKey(kdbLogin(unitTest.getUserMobile(), unitTest.getPassword()));}private String kdbLogin(String userMobile,String password){Map<String,String> paramMap = new HashMap<String,String>();paramMap.put("userMobile",userMobile);paramMap.put("loginPassword",password);String clientKey= null;try {JSONObject jsonObject = JSONObject.parseObject(HttpUtilNew.postJson(unitTest.getSimulatedLandingUrl(), paramMap));clientKey = jsonObject.getJSONObject("data").getString("clientKey");} catch (Exception e) {e.printStackTrace();}return clientKey;}private String login(String userMobile, String archiveId, String password) throws Exception {Map<String,String> paramMap = new HashMap<String,String>();paramMap.put("USER_MOBILE",userMobile);paramMap.put("LOGIN_PASSWORD",password);paramMap.put("TOKEN", createToken());paramMap.put("action","simulatedLanding");String result = HttpUtil.post(unitTest.getSimulatedLandingUrl(), paramMap);try {unitTest.setClientKey(result);return result;} catch (Exception e) {e.printStackTrace();return null;}}private String createToken(){String tokenCreate = EnCodeHelper.encode(unitTest.getUserMobile()+"HFT_OPEN_API_"+new Date().getDay());return tokenCreate;}public String getClientKey() {return unitTest.getClientKey();}private void setClientKey() {try {unitTest.setClientKey(login(unitTest.getUserMobile(), unitTest.getArchiveId(),unitTest.getPassword()));} catch (Exception e) {e.printStackTrace();}}public String getResult(){return unitTest.getResult();}public String postNewErp(Object param,String interfaceName) throws Exception {URL url = new URL(unitTest.getHost()+"/"+interfaceName);System.out.println(unitTest.getHost()+"/"+interfaceName);URLConnection urlConnection = url.openConnection();// 设置doOutput属性为true表示将使用此urlConnection写入数据urlConnection.setDoOutput(true);// 定义待写入数据的内容类型,我们设置为application/x-www-form-urlencoded类型urlConnection.setRequestProperty("content-type", "application/json");urlConnection.setRequestProperty("CLIENTKEY", "d48311413b02b444d5904d2690bb0eae");urlConnection.setRequestProperty("deviceType", "1");// 得到请求的输出流对象OutputStreamWriter out = new OutputStreamWriter(urlConnection.getOutputStream());// 把数据写入请求的Bodyif(param instanceof BaseMapParam){BaseMapParam paramMap = (BaseMapParam)param;paramMap.setInteger("pageOffset", paramMap.getPageOffset());paramMap.setInteger("pageRows", paramMap.getPageRows());param = paramMap.getMap();}String jsonStr = JSON.toJSONString(param);out.write(jsonStr);out.flush();out.close();// 从服务器读取响应InputStream inputStream =  urlConnection.getInputStream();String encoding = urlConnection.getContentEncoding();String body = IOUtils.toString(inputStream, encoding);unitTest.setResult(body);return body;}public String postNewErp(Object param,String interfaceName,String clientKey) throws Exception {URL url = new URL(unitTest.getHost()+"/"+interfaceName);URLConnection urlConnection = url.openConnection();// 设置doOutput属性为true表示将使用此urlConnection写入数据urlConnection.setDoOutput(true);// 定义待写入数据的内容类型,我们设置为application/x-www-form-urlencoded类型urlConnection.setRequestProperty("content-type", "application/encrypt-json");urlConnection.setRequestProperty("CLIENTKEY", clientKey);urlConnection.setRequestProperty("deviceType", "1");// 得到请求的输出流对象OutputStreamWriter out = new OutputStreamWriter(urlConnection.getOutputStream());// 把数据写入请求的Bodyif(param instanceof BaseMapParam){BaseMapParam paramMap = (BaseMapParam)param;paramMap.setInteger("pageOffset", paramMap.getPageOffset());paramMap.setInteger("pageRows", paramMap.getPageRows());param = paramMap.getMap();}String jsonStr = JSON.toJSONString(param);System.out.println("===========请求参数:" + jsonStr);out.write(AESHelper.encode(jsonStr));out.flush();out.close();// 从服务器读取响应InputStream inputStream =  urlConnection.getInputStream();String encoding = urlConnection.getContentEncoding();String body = IOUtils.toString(inputStream, encoding);unitTest.setResult(body);return body;}public String sendGet(String url, String param) {StringBuilder result = new StringBuilder();BufferedReader in = null;try {String urlNameString = url + "?" + param;URL realUrl = new URL(urlNameString);// 打开和URL之间的连接URLConnection connection = realUrl.openConnection();// 设置通用的请求属性connection.setRequestProperty("accept", "*/*");connection.setRequestProperty("connection", "Keep-Alive");connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");// 建立实际的连接connection.connect();// 定义 BufferedReader输入流来读取URL的响应in = new BufferedReader(new InputStreamReader(connection.getInputStream()));String line = null;while ((line = in.readLine()) != null) {result.append(line);}} catch (Exception e) {System.out.println("发送GET请求出现异常!" + e);e.printStackTrace();}// 使用finally块来关闭输入流finally {try {if (in != null) {in.close();}} catch (Exception e2) {e2.printStackTrace();}}return result.toString();}public String getNewErp(String interfaceName) throws Exception {URL url = new URL(unitTest.getHost()+"/"+interfaceName);URLConnection urlConnection = url.openConnection();// 定义待写入数据的内容类型,我们设置为application/x-www-form-urlencoded类型urlConnection.setRequestProperty("CLIENTKEY", unitTest.getClientKey());urlConnection.connect();// 从服务器读取响应BufferedReader in = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));return in.lines().collect(Collectors.joining(""));}private String loginNew(String userMobile,String password){Map<String,Object> paramMap = new HashMap<String,Object>();paramMap.put("passwordType",0);paramMap.put("userMobile",userMobile);paramMap.put("loginPassword",password);String loginResult = HttpUtil.postJson(unitTest.getSimulatedLandingUrl(), paramMap);JSONObject loginJosnObject = JSONObject.parseObject(loginResult);Integer errcode = loginJosnObject.getInteger("errCode");if (Const.ResponseCode.SUCCESS != errcode) {if (errcode.equals("1")) {throw new BusinessException("系统错误");} else {throw new BusinessException(loginJosnObject.getString("errMsg"));}}String dataStr = loginJosnObject.getString("data");JSONObject dataJsonObject = JSONObject.parseObject(dataStr);return dataJsonObject.getString("clientKey");}
}

这篇关于优雅的写init方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1137011

相关文章

使用Python进行文件读写操作的基本方法

《使用Python进行文件读写操作的基本方法》今天的内容来介绍Python中进行文件读写操作的方法,这在学习Python时是必不可少的技术点,希望可以帮助到正在学习python的小伙伴,以下是Pyth... 目录一、文件读取:二、文件写入:三、文件追加:四、文件读写的二进制模式:五、使用 json 模块读写

Oracle数据库使用 listagg去重删除重复数据的方法汇总

《Oracle数据库使用listagg去重删除重复数据的方法汇总》文章介绍了在Oracle数据库中使用LISTAGG和XMLAGG函数进行字符串聚合并去重的方法,包括去重聚合、使用XML解析和CLO... 目录案例表第一种:使用wm_concat() + distinct去重聚合第二种:使用listagg,

Java后端接口中提取请求头中的Cookie和Token的方法

《Java后端接口中提取请求头中的Cookie和Token的方法》在现代Web开发中,HTTP请求头(Header)是客户端与服务器之间传递信息的重要方式之一,本文将详细介绍如何在Java后端(以Sp... 目录引言1. 背景1.1 什么是 HTTP 请求头?1.2 为什么需要提取请求头?2. 使用 Spr

Java如何通过反射机制获取数据类对象的属性及方法

《Java如何通过反射机制获取数据类对象的属性及方法》文章介绍了如何使用Java反射机制获取类对象的所有属性及其对应的get、set方法,以及如何通过反射机制实现类对象的实例化,感兴趣的朋友跟随小编一... 目录一、通过反射机制获取类对象的所有属性以及相应的get、set方法1.遍历类对象的所有属性2.获取

Java中的Opencv简介与开发环境部署方法

《Java中的Opencv简介与开发环境部署方法》OpenCV是一个开源的计算机视觉和图像处理库,提供了丰富的图像处理算法和工具,它支持多种图像处理和计算机视觉算法,可以用于物体识别与跟踪、图像分割与... 目录1.Opencv简介Opencv的应用2.Java使用OpenCV进行图像操作opencv安装j

Ubuntu系统怎么安装Warp? 新一代AI 终端神器安装使用方法

《Ubuntu系统怎么安装Warp?新一代AI终端神器安装使用方法》Warp是一款使用Rust开发的现代化AI终端工具,该怎么再Ubuntu系统中安装使用呢?下面我们就来看看详细教程... Warp Terminal 是一款使用 Rust 开发的现代化「AI 终端」工具。最初它只支持 MACOS,但在 20

Python实现数据清洗的18种方法

《Python实现数据清洗的18种方法》本文主要介绍了Python实现数据清洗的18种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录1. 去除字符串两边空格2. 转换数据类型3. 大小写转换4. 移除列表中的重复元素5. 快速统

Debian如何查看系统版本? 7种轻松查看Debian版本信息的实用方法

《Debian如何查看系统版本?7种轻松查看Debian版本信息的实用方法》Debian是一个广泛使用的Linux发行版,用户有时需要查看其版本信息以进行系统管理、故障排除或兼容性检查,在Debia... 作为最受欢迎的 linux 发行版之一,Debian 的版本信息在日常使用和系统维护中起着至关重要的作

Python中lambda排序的六种方法

《Python中lambda排序的六种方法》本文主要介绍了Python中使用lambda函数进行排序的六种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们... 目录1.对单个变量进行排序2. 对多个变量进行排序3. 降序排列4. 单独降序1.对单个变量进行排序

Python中实现进度条的多种方法总结

《Python中实现进度条的多种方法总结》在Python编程中,进度条是一个非常有用的功能,它能让用户直观地了解任务的进度,提升用户体验,本文将介绍几种在Python中实现进度条的常用方法,并通过代码... 目录一、简单的打印方式二、使用tqdm库三、使用alive-progress库四、使用progres