Got a bit of an odd problem. I have the following code to do some basic parsing of a String:
for (int i = 0; i < lines.size(); i++) {
String line = lines.get(i);
//get time
int firstWhiteSpace = line.indexOf(" ");
String time = line.substring(0, firstWhiteSpace);
//problem is here vvvv
line = line.substring(firstWhiteSpace + 1, line.length());
//problem is here ^^^^
//get client
int firstColon = line.indexOf(":");
String client = line.substring(0, firstColon);
line = line.substring(firstColon + 1, line.length());
ChatMessage chatMessage = new ChatMessage();
chatMessage.setTime(time);
chatMessage.setClient(client);
chatMessage.setMessage(line);
messages.add(chatMessage);
}
So basically after I do line = line.substring(a, b) I would expect to get a substring of line between a (inclusive) and b (exclusive). However, if I print line I get the entire String prior to performing the substring operation. Curiously if I look at the debugger (Eclipse) then the value of the String IS the substring BUT the character array contains the entire String.
For example, if:
line = "Hello World"
and I do:
line = line.substring(0, 5);
then line now has a value of:
"Hello"
but the character array is:
[H, e, l, l, o, , W, o, r, l, d]
Hence, I'm a little confused. Apologies if I've missed something ridiculously stupid. Which is quite possible.
The full code, its not a very complicated class:
public class ChatParser { private static TS3ParserSettings settings;
public static void main(String[] args) {
ChatParser.setSettings("C:/Users/*****/javaWorkspace/TS3Parser/src/data/settings.txt");
ChatParser.parseChat();
}
public static void parseChat() {
ArrayList<String> lines = TextParser.parseTextLines(settings.getSetting("chatLogPath"));
ArrayList<ChatMessage> messages = new ArrayList<ChatMessage>();
for (int i = 0; i < lines.size(); i++) {
String line = lines.get(i);
//get time
int firstWhiteSpace = line.indexOf(" ");
String time = line.substring(0, firstWhiteSpace);
line = line.substring(firstWhiteSpace + 1, line.length());
//get client
int firstColon = line.indexOf(":");
String client = line.substring(0, firstColon);
line = line.substring(firstColon + 1, line.length());
ChatMessage chatMessage = new ChatMessage();
chatMessage.setTime(time);
chatMessage.setClient(client);
chatMessage.setMessage(line);
messages.add(chatMessage);
}
for (int i = 0; i < messages.size(); i++) {
System.out.println("TIME = " + messages.get(i).getTime() + " CLIENT = " + messages.get(i).getClient() + " MESSAGE = " + messages.get(i).getMessage());
}
}
public static void setSettings(String path) {
settings = SettingsParser.parseSettings(path);
}
}
Stringorchar[]? I have the feeling something is missing. Maybe a SSCCE – David Kroukamp Jul 15 '12 at 18:46