Tagged Questions
10
votes
4answers
1k views
File.listFiles() mangles unicode names with JDK 6 (Unicode Normalization issues)
I'm struggling with a strange file name encoding issue when listing directory contents in Java 6 on both OS X and Linux: the File.listFiles() and related methods seem to return file names in a ...
7
votes
3answers
3k views
Java Charset problem on linux
problem: I have a string containing special characters which i convert to bytes and vice versa..the conversion works properly on windows but on linux the special character is not converted ...
2
votes
1answer
2k views
How do I set file.encoding for a junit test in ant?
I'm not quite done with file.encoding and ant. How do I set the file.encoding for junit tests in ant? The junit ant task doesn't support the encoding attribute like the javac task does.
I've ...
0
votes
4answers
53 views
Charset of Java source file and failing test
First, I'd like to say that I've spent a lot of time searching for an explanation/solution. I've found hints of the problem, but no way to resolve my particular issue. Hence the post on a topic that ...
0
votes
1answer
236 views
How to change file encoding table in java
I have my code to check encoding table:
System.out.println("enc. table: "+System.getProperty("file.encoding") +
"enc. table: "+new java.io.OutputStreamWriter(new ...