I'm trying to write a program, now I am stuck at a problem of importing previous settings from a file. I am just a beginner so I was thinking about saving settings in a text file, and then at the beginning of program initialize those. The txt file is supposed to look like this:
0:0 //number of My Custom Panels to be generated.
1:0 //Custom panel name(it will be an argument customFunction(panelName)
1:1 //This is panel position (from 1(top) to 5(bottom))
1:2 //This will hold String with Icon.png depending on panelName.
This is my first Approach(Just part of the code to give you the idea), but I have a feeling there is some faster/more code "economical" way. Without tons of if() 's...
try {
FileReader fileReader =
new FileReader(fileName);
BufferedReader bufferedReader =
new BufferedReader(fileReader);
while((line = bufferedReader.readLine()) != null) {
if(line.equals("")!= true)
if(line.charAt(0) == 1){
for(int i = 0; i < 4; i++){
if(i == 0){
Name = line.
}
else if(i == 1){
}
else if(i == 2){
}
else if(i == 3){
}
}
}
else if(line.charAt(0) == 2){
}
If only I have some ability to read line by line. Not whole file at all. Somehow tell the program when to get to the next line. I don't like the part "while((line = bufferedReader.readLine()) != null)" I was trying to use line = bufferedReader.readLine() in a loop but .println of this was always showing "null". If anyone can help I will be grateful. (If something is unclear I will try my best to explain);