Can be java virtual machine influenced by missing national languge support in Linux? -
i don't have linux. program in java reads ansi coded text file created under windows xp in national language. worked under windows xp. i'am interested if pure linux can process such program. in advance!
the java vm affected language , locale settings, in ways, if any, program affected depends on program. string literals, example, stored in unicode in compiled program, remain compiled under circumstances.
in case, seem interested in how inputstreamreaders , behave, , depends on how create them. if create inputstreamreader without of charset arguments, use jvm's conception of "the default charset", depends on locale settings. if, on other hand, pass explicit charset when creating them, behave same no matter platform , locale settings run program on.
for record, filereader (if use) uses default charset.
Comments
Post a Comment