0
votes
0answers
10 views
Creating files with french characters and encoding.
HI, I am creating a file like so.
FileStream temp = File.Create( this.FileName );
Then putting data in the file like so.
this.Writer = new StreamWriter( this.Stream );
this.Writer.WriteLine( …
23
votes
9answers
7k views
How to get UTF-8 working in java webapps?
I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.
My setup is the …
0
votes
3answers
564 views
Can a PHP file name (or a dir in its full path) have UTF-8 characters?
I would like to access a PHP file whose name has UTF-8 characters in it.
The file does not have a BOM in it. It just contains an echo statement that displays a few unicode characters.
Accessing the …
0
votes
3answers
129 views
Internet Explorer blocked file download; file of “Unknown File Type”
I'm developing a front-end to a Rails application. In cross-browser testing, I immediately discovered that Internet Explorer (apparently all modern versions, but at least IE 7 and IE 8) is not …
1
vote
3answers
36 views
Reading utf-8 characters from a gzip file in python
Hi,
I am trying to read a gunzipped file (.gz) in python and am having some trouble.
I used the gzip module to read it but the file is encoded as a utf-8 text file so eventually it reads an invalid …
0
votes
2answers
37 views
HTML entities do not render correctly in browser after XSLT transform
I have the following XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<example>
<contactInfo>
<id>12319221</id>
<name>Jerry …
0
votes
1answer
258 views
Hsqldb table encoding
How do I set the character encoding for a specific table? E.g:
CREATE TABLE COMMENTS (ID INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 0, INCREMENT BY 1) NOT NULL,
TXT LONGVARCHAR,
…
0
votes
2answers
96 views
fix broken german characters
Hello,
I have a translation file for German words but I got it broken like this:
Wنhlen Sie eine Fachgrِكe
is there a tool can fix this in utf-8 mode ?
it is for Delphi windows software
thanks
1
vote
0answers
52 views
How can I set the encoding of shell-command-on-region output?
I have a small elisp script which applies Perl::Tidy on region or whole file. For reference, here's the script (borrowed from EmacsWiki):
(defun perltidy-command(start end)
"The perltidy command we …
0
votes
2answers
28 views
PHP UTF-8 charset accentuation
Hi guys,
Sorry if this question is already somewhere but I need a more pratical approach:
The page is set like this:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
…
0
votes
1answer
34 views
Java: MalformedByteSequenceException (XML)
I'm trying to parse XML using this class. When I type out a simple file, it works fine.
<testData>
<text>
odp
</text>
</testData>
Here is my main
public static …
0
votes
4answers
121 views
PHP input filtering - checking ascii vs checking utf8
I need to insure that all my strings are utf8. Would it be better to check that input coming from a user is ascii-like or that it is utf8-like?
//KohanaPHP
function is_ascii($str) {
return ! …
0
votes
1answer
48 views
How to convert a NSString to UTF-8 format string in iphone sdk?
I have localization in my app(english,spanish,italian).The client sent me strings files but some characters are strange how do i correct them? i have figured out that the client used Mac OS Roman …
3
votes
5answers
2k views
Problem with Java properties utf8 encoding in Eclipse
I've recently had to switch encoding of webapp I'm working on from ISO-xx to utf8. Everything went smooth, except properties files. I added „-Dfile.encoding=UTF-8“ in eclipse.ini and normal files work …
4
votes
3answers
3k views
“unmappable character for encoding” warning in Java
I'm currently working on a Java project that is emitting the following warning when I compile:
/src/com/myco/apps/AppDBCore.java:439: warning: unmappable character for encoding UTF8
[javac] …
