2
votes
1answer
19 views
Runtime.getRuntime().exec() with a non-ASCII string in Windows?
Trying the following method to open an Arabic URL:
String cmd = "cmd.exe /C start \"Open file\" \"http://ar.wikipedia.org/wiki/موسوعة\"";
Runtime.getRuntime().exec( cmd );
U …
0
votes
2answers
23 views
XmlSerializer Utf-8 encoding
Consider the code below
XmlSerializer serializer = new XmlSerializer(typeof(Invoice));
using (TextWriter writer = new StreamWriter(fileName))
{
// Serialize the object, …
1
vote
2answers
62 views
How do you think Google is handling this encoding issue?
I recently came across an encoding issue specific to how Firefox encodes URLs directly entered into the address bar. It basically looks like the default Firefox character encoding …
0
votes
1answer
46 views
encoding a string to ascii
I have a long string that I want to encode to ascii. I'm doing:
s = s.encode('ascii', 'replace')
but I get:
'ascii' codec can't decode byte 0xc3 in position 2646: ordinal not i …
1
vote
4answers
74 views
System.Text.Encoding isn’t
I've tracked a problem I'm having down to the following inexplicable behaviour within the .NET System.Text.Encoding class:
byte[] original = new byte[] { 128 };
string encoded = S …
-1
votes
0answers
35 views
Javascript encoding help
This is a decoding function, can anyone create encoding function based on it?
chr13: function(chr14) {
var chr15 = "";
var chr16 = 23;
chr14 = unescape(chr …
2
votes
4answers
81 views
How to Find Default Charset/Encoding in Java?
The obvious answer is to use Charset.defaultCharset() but we recently found out that this might not be the right answer. I was told that the result is different from real default c …
2
votes
2answers
37 views
How to get ASP.NET HyperLink control to encode ampersands in Text attribute?
I use the following control to output a HTML link:
<asp:HyperLink ID="hlEditDetails" runat="server" CssClass="arrow-forward" Text="Edit Details & Photo" />
However …
1
vote
4answers
52 views
PHP - UTF8 problem with German characters.
Hello,
I'm at my wits end with this one, then I remember stack overflow.
I have a site, http://bridgeserver3.co.uk/disklavier/de/ , the language is stored in a simple PHP file wh …
0
votes
1answer
86 views
With a utf8-encoded Perl script, can it open a filename encoded as GB2312?
I'm not talking about reading in the file content in utf-8 or non-utf-8 encoding and stuff. It's about file names. Usually I save my Perl script in the system default encoding, "GB …
1
vote
3answers
162 views
Java String Encoding to UTF-8
Hi All,
I have some HTML code that I store in a Java.lang.String variable. I write that variable to a file and set the encoding to UTF-8 when writing the contents of the string va …
1
vote
1answer
35 views
Hibernate Encoding
Hi. Im trying to insert data with japanese characters to an oracle database. The things is what is saved in the database are bunch of inverted question marks. HOw do I resolve thi …
0
votes
1answer
22 views
What is the encoding of an .eml file from IIS’s SMTP server?
I need to write a program that read the .eml files from IIS's mail drop box, but I can't find a definitive source that tells me the encoding of the .eml files. Is there a specifica …
0
votes
4answers
87 views
Java: cannot parse and display non-utf8 characters read from an http request
Hello,
I'm using Java to parse this request
http://ajax.googleapis.com/ajax/services/search/web?start=0&rsz=large&v=1.0&q=rz+img+news+recordid+border
which has as a …
1
vote
2answers
67 views
Ruby: Convert encoded character to actual UTF-8 character
Ruby will not play nice with UTF-8 strings. I am passing data in an XML file and although the XML document is specified as UTF-8 it treats the ascii encoding (two bytes per charact …
