DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • How to Convert CSV to XML in Java
  • Jakarta EE 12: Entering the Data Age of Enterprise Java
  • Building Realistic Test Data in Java: A Hands-On Guide for Developers
  • Wait, What Format Is That? A Cross—Domain Guide for Everyone

Trending

  • Migrate a Hardcoded LangGraph Agent to LaunchDarkly AI Configs in 20 Minutes
  • When One MVP Is Really Four Systems: A Better Way to Plan Multi-Role Apps
  • OpenAPI From Code With Spring and Java: A Recipe for Your CI
  • From Indicators to Insights: Automating IOC Enrichment Using Python and Threat Feeds
  1. DZone
  2. Data Engineering
  3. Data
  4. Saving Data to CSV Files With Java Through JMeter

Saving Data to CSV Files With Java Through JMeter

Wish you could complete your entire CSV file process in one place? Let's see how you can create and update CSVs through JMeter.

By 
Michal Borenstein user avatar
Michal Borenstein
·
Sep. 25, 17 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
25.0K Views

Join the DZone community and get the full member experience.

Join For Free

Creating CSV files with Java through Apache JMeter is a convenient and easy way to form and to update your CSV files. Instead of creating the CSV file separately, you can complete your whole work process in one place — in JMeter. In this blog post, I will show you how to read and write CSV files through JMeter, and how to save data with them. This should be part of a longer test script you have, which uses the data from the CSV file for the load testing scenario.

Let’s get started.

1. First add a Thread Group

Right click on Test Plan -> Threads -> Thread Group

2. Add an element that enables you to write a code in Java, i.e a BeanShell element. This can be a Sampler, PreProcessor or PostProcessor, according to your script needs. In this example, we will use a sampler.

Right click on Thread Group -> Sampler -> BeanShell Sampler

This is where you add the Java code with all the relevant parameters for the CSV file. The code executes writing to a CSV file with the variables in it.

Image title

This is the code I used. This code writes the parameters that you set to a CSV file. Every time the sampler is executed, one more line is added to the CSV file.

import java.io.FileWriter;
import java.util.Arrays;
import java.io.Writer;
import java.util.List;

//Default separator
char SEPARATOR = ',';

//function write line in csv
public void writeLine(FileWriter writer, String[] params, char separator) {
    boolean firstParam = true;

    StringBuilder stringBuilder = new StringBuilder();
    String param = "";

    for (int i = 0; i < params.length; i++) {
        //get param
        param = params[i];
        log.info(param);

        //if the first param in the line, separator is not needed
        if (!firstParam) {
            stringBuilder.append(separator);
        }

        //Add param to line
        stringBuilder.append(param);

        firstParam = false;
    }

    //prepare file to next line
    stringBuilder.append("\n");

    //add to file the line
    log.info(stringBuilder.toString());
    writer.append(stringBuilder.toString());

}

//get path of csv file (creates new one if its not exists)
String csvFile = "<path to csv file>"; // for example '/User/Downloads/blabla.csv'

String[] params = {
    $ {
        param1
    },
    $ {
        param2
    },
    $ {
        param3
    }
};

FileWriter fileWriter = new FileWriter(csvFile, true);
writeLine(fileWriter, params, SEPARATOR);

//proper close to file
fileWriter.flush();
fileWriter.close();


If you want to use it, you can adjust the following lines:

  • Change the parameters here, and add more if you need to:
String[] params = {${param1}, ${param2}, ${param3}};



  • If you run this script a few times, “true” will append new lines to the file. To override the existing lines, change to “false”. This is an optional part of the code.
FileWriter fileWriter = new FileWriter(csvFile, true);



4. Add a BeanShell element that will read the entire CSV file and set each parameter to a variable so they can be used later on in the script.

Here is an optional script for reading the entire file, you can create your own.

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

String csvFile = "<path to csv file>";
BufferedReader bufferedReader = null;
String line = "";
String SEPARATOR = ",";

try {
    bufferedReader = new BufferedReader(new FileReader(csvFile));

    int counter = 1;
    while ((line = bufferedReader.readLine()) != null) 
    {
            String[] items = line.split(SEPARATOR);

for(int i = 0; i < items.length; i++)
{
vars.put(“param” + i + counter, items[i] );
} 
    }

} 
catch (FileNotFoundException e) 
{
  e.printStackTrace();
} 
catch (IOException e) 
{
  e.printStackTrace();
} 
finally {
  if (bufferedReader != null) {
      try {
          bufferedReader.close();
      } catch (IOException e) {
          e.printStackTrace();
      }
  }

}



Let's explain some of the lines:


  • The following line goes through each line in the CSV file and reads it.


while ((line = bufferedReader.readLine()) != null) 



  • The following defines the array of the CSV line's params.


String[] items = line.split(SEPARATOR); 



  • The following part sets a new JMeter variable for each parameter in the line. You can define the parameters according to your needs and decide what to do with them in JMeter.


items.length; i++)
{
vars.put(“param” + i + counter, items[i] );
} 



That’s it! Now you can incorporate this configuration into your entire script, and integrate the CSV file reading and writing into your complete test flow.


That’s it! You now know how to read and write data to CSV files through JMeter in Java.

CSV Java (programming language) Data (computing)

Published at DZone with permission of Michal Borenstein. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • How to Convert CSV to XML in Java
  • Jakarta EE 12: Entering the Data Age of Enterprise Java
  • Building Realistic Test Data in Java: A Hands-On Guide for Developers
  • Wait, What Format Is That? A Cross—Domain Guide for Everyone

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook