PathParser
can speed up the parsing of the data. Rather than using a buffer like a ParseBuffer
or worse a StringBuffer
this just keeps an index into the character array from the start and end of the token. Also this enables a cache to be kept so that a String
does not need to be made again after the first time it is created.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|