daniel87dec
Technical User
Can somebody tell me how to solve my problem.
this is pary of my code:
try{
FileWriter fr = new FileWriter("rawdata.txt"
PrintWriter output = new PrintWriter(fr);
String lastNameWithComma = newEmployeeLastNameString+",";
output.print(lastNameWithComma);
output.close();
}catch(IOException e){}
}
I get the following error message: "cannot resolve symbol constructor PrintWriter (FileWriter)"
Thanks in advance
this is pary of my code:
try{
FileWriter fr = new FileWriter("rawdata.txt"
PrintWriter output = new PrintWriter(fr);
String lastNameWithComma = newEmployeeLastNameString+",";
output.print(lastNameWithComma);
output.close();
}catch(IOException e){}
}
I get the following error message: "cannot resolve symbol constructor PrintWriter (FileWriter)"
Thanks in advance