Search code examples
jmeterbeanshell

Getting/using output of CMD window of Jmeter


I,m running a Java file from BeanShell Sampler in jmeter, I'm getting the output successful in cmd windows of jmeter. The output comprises of series of logger files,I need to extract only a specified string from the cmd window and use it for another sample


Solution

  • This java bean shell Command made the console out by j meter that is std out to be written in a file

    System.setOut(new PrintStream(new BufferedOutputStream(new FileOutputStream("D:\\dir1\\dir2\\abc.out")),true));

    Make sure your path to file should have double backward slash