> > * Why does LoadProperties parse the properties? Why not use > > java.util.Properties? > > Thinking out aloud - How? By converting inputreader > to inputstream? hmm...
You could read the whole file into a String, then convert that to bytes with the ISO_8859_1 encoding needed by Properties, then create a ByteArrayInputStream. Alternatively, a ReaderInputStream which converted any char over 255 to '?' shouldn't be too hard to write. Jon -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
