hello sir:
i create a new file my codingI want to wite the value into my file .. My value is s...i want to take the value s and wite in my fileCode:try {
File file = new File("Logfilename.txt");
FileInputStream fileInputStream = new FileInputStream(file);
f = new FileOutputStream(file);
d=new DataOutputStream(f);
catch (IOException e) {
}
Code:for(String s : WMSLoggerIDs.FD_ALL) {
System.out.println(WMSLoggerFactory.getGlobalLogValue(s));
