Charles grabs the package and turns it into interface automation test case

We can get the json file to be parsed and convert it to json for saving by using Charles to grab the package and transfer the interface automation test case. So let's read it. First of all, let's look at the last document,    {   "config": {   "name": "testcase description",   "variables": {}   },   "teststeps": [   ...

Posted by saami123 on Wed, 06 May 2020 16:46:24 +0200

Create Excel PivotTable in Java

Excel PivotTable has powerful data processing function, which can make the data in the table more intuitive. With Excel PivotTable, it is convenient for users to sort and filter all kinds of data quickly, and at the same time, it can meet the needs of users for different data summary. This article describes how to create and format an excel Piv ...

Posted by nolos on Mon, 27 Apr 2020 17:19:40 +0200

Java sets alternate background colors for rows in Excel

When making excel tables, by filling two adjacent rows in the data table with different background colors, you can make the data in each row look clearer, avoid reading wrong rows, and increase the beauty of Excel tables. This article describes how to set alternate background colors for Excel odd and even rows in a Java program.   Use tools: Fr ...

Posted by Petran76 on Thu, 09 Apr 2020 16:14:50 +0200

Download 1000 apk s (with hands-on materials) in Python UU

When we were testing Android phones, The marketing department wants our testing department to test the compatibility of Top 1000 app s, To ensure that our mobile phones can be installed and run normally with so many easy-to-use app s, And the marketing department provides the apk download address of top 1000 in an application market. How to do ...

Posted by indian98476 on Mon, 06 Apr 2020 10:43:51 +0200

Export Excel data based on POI

Export Excel data based on POI There will be many report businesses in the project, which need to export data. Here we use POI based parsing. There are two ways to parse POI: HSSF(xls format) and XSSF(xlsx). Take the waybill management interface of BOS logistics as an example: Front-end code Export Waybill Information and generate report: 1. ...

Posted by rakennedy75 on Sat, 04 Apr 2020 08:38:14 +0200

Create, edit and delete Excel named range in Java

Excel named range, that is, to name the specified cell range so as to reference the cell range. For example, in formula application, you can reference the specified named range for formula operation. When you create a named range, you can create it for the whole workbook, that is, workbook.getNameRan ...

Posted by Petrushka on Tue, 17 Mar 2020 07:45:54 +0100

Redis as a single machine cache usage recommendation

  Preface Prepare to introduce redis as a single machine cache in the project because the cache middleware used in the original project cannot be used in the native Kirin operating system.        Configuration optimization recommendations Configure the redis service to start the daemon Redis does not run as a daemon by default, it can run in th ...

Posted by MK27 on Tue, 03 Mar 2020 02:44:07 +0100

WPF Advanced Tutorial Topic: Grid

Preface Grid is the most powerful layout container in WPF and deserves a special topic to understand how to use it. Use Row and Column Definitions <Grid ShowGridLines="True"> <Grid.ColumnDefinitions> <ColumnDefinition></ColumnDefinition> <ColumnDefini ...

Posted by geaser_geek on Wed, 26 Feb 2020 02:46:22 +0100

PowerDesigner uses VBScript to export table structure to Excel

The previous article introduced how to import the table structure written by Excel into PowerDesigner (see the link: PowerDesigner import table structure from Excel )In the actual work, it is often that the two transform into each other. Here is the export script corresponding to the agreed Excel format in that article: '****** ...

Posted by sy-co on Thu, 13 Feb 2020 21:17:02 +0100

Hutool Java tool class library export Excel, super simple!

Preface When developing an application system, exporting files is a necessary function. I've used the import and export functions of POI, easyexcel and other tools before, but I always feel that it's too troublesome, there are too many codes, and I don't think it's very easy to use them. Today, I'd like ...

Posted by BluntedbyNature on Sat, 08 Feb 2020 09:27:50 +0100