i have a little problem with my jmeter test plan. i have a jdbc request to extract customers in sql databases from this sql query i retrieve first name and last name only after that i have a beanshell little script to write all my customers in a csv file :
f = new FileOutputStream(vars.get("InputFilePath"));
p = new PrintStream(f);
nb_customer=Integer.parseInt(vars.get("NOM_#"));
for (i=1;i<=nb_customer;i++) {
p.println(vars.get("NOM_"+i) + ";" + vars.get("PRENOM_"+i));
}
p.close();
f.close();
my problem is that it is an application for our subsidiary company in polska so, all customers first and last name are in polish language with different symbol, characters. in the csv file, they appears with a ? in spite of the real character.
can you help me please ?
thanks a lot
Ludo

