Tagged Questions
The file-encodings tag has no wiki summary.
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 ...
5
votes
1answer
361 views
Powershell: Get default system encoding
The powershell cmdlet out-file has the switch -encoding witch you can set to default. This default value will use the encoding of the system's current ANSI code page.
My question is: How can I get the ...
4
votes
1answer
68 views
Should I ensure that all my web application code is UTF-8?
I have a Django site that contains only English language strings. I'll be localising this to other languages. I haven't set any sort of file encoding options. Do need to convert all my Python code to ...
4
votes
4answers
823 views
StreamWriter and UTF-8 Byte Order Marks
I'm having an issue with StreamWriter and Byte Order Marks. The documentation seems to state that the Encoding.UTF8 encoding has byte order marks enabled but when files are being written some have the ...
2
votes
2answers
94 views
Spaces in PHP causing meaningless errors?
I'm editing the functions.php file of a WordPress theme and whenever I edit it, even when the edit is adding a single space the server returns
error:
Parse error: syntax error, unexpected '}' in ...
2
votes
2answers
119 views
How to completely turn off vim's abilty to recode files?
Every encodings related question I've found is about how to recode files.
However, mine is quite contrary one - is it possible to make vim not to recode files at all? (and how, if so?)
Sometimes it ...
2
votes
1answer
311 views
file encoding generating blank character in ruby — why?
I'm using this little bit of ruby:
File.open(ARGV[0], "r").each_line do |line|
puts "encoding: #{line.encoding}"
line.chomp.split(//).each do |char|
puts "[#{char}]"
end
end
And I have ...
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 ...
2
votes
1answer
530 views
C#: “Swedish” characters in Xpath when parsing Lating1Encoded docs
I've a set of html docs that I need to parse. They are encoded in Latin1Encoded. I'm using HtmlAgiliy pack for "parsing".
I have a Xpath query (with swedish characters) that I can't get to work ...
1
vote
4answers
65 views
Detect if file contains text [closed]
Possible Duplicate:
How can I determine if a file is binary or text in c#?
C# - Check if File is Text Based
To better understand multi threading and asynchronous tasks, I wrote a simple ...
1
vote
1answer
59 views
PerlIO in Windows PowerShell and CMD.exe
Apparently, a Perl script I have results in two different output files depending on if I run it under Windows PowerShell, or cmd.exe. The script can be found at the bottom of this question. The file ...
1
vote
1answer
55 views
Loop Through File Extensions, Looking for Non-ASCII Characters - Python
I wrote a little Python program that looks though a directory (and its subdirectories) for files that contain non-ASCII characters.
I want to improve it. I know that certain files in this ...
1
vote
3answers
145 views
Perl and reading files with different encodings
I am using a perl script to read in a file, but I'm not sure what encoding the file is in. Basically, my file is a list of book titles, but each book has other info associated with it (author, ...
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
53 views
Inconsistent file behavior
I'm trying to track down a Python UnicodeDecodeError in the following log line:
10.210.141.123 - - [09/Nov/2011:14:41:04 -0800] "gfR\x15¢\x09ì|Äbk\x0F[×ÐÖà\x11CEÐÌy\x5C¿DÌj\x08Ï ...
0
votes
1answer
231 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 ...
0
votes
1answer
36 views
Unknown File Encoding
I've got a configuration file with some encoding which I'm not sure about. How would I go about decoding it so that it's readable?
Here's a sample:
xÚ³II,I´ãå´ÉËOIUÈL±U*®,öÌKËW
0
votes
0answers
64 views
Chucked encoding download transfer
I have a problem at work where I need to download a file that's chucked encoding.
I'm having a hard time finding a file online where the server sends it as chucked encoded.
Do you guys know what's ...
0
votes
1answer
285 views
File encodings with ruby
I'm having a bit problems with file encodings.
I'm receiving a url-encoded string like "sometext%C3%B3+more+%26+andmore", unescape it, process the data, and save it with windows-1252 encoding.
The ...