7
votes
6answers
149 views
Guessing the encoding of text represented as byte[] in Java
Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely …
0
votes
6answers
99 views
Why can’t my web page apply its CSS?
Hi all,
I have a simple website(primarily static html/css) but for some reason some of the pages won't apply the external css in Firefox (works in IE).
http://bjmarine.net/servic …
3
votes
3answers
46 views
Coldfusion XMLFormat() not converting all characters
I am using XMLFormat() to encode some text for an XML document. However, when I go to read the XML file I created I get an invalid character error. Why does XMLFormat() not properl …
0
votes
2answers
22 views
Cannot start session if documents are in different encoding
Hello ,
I think i encountered a PHP bug
When my header file is in UTF-8 encoding and my index.php file is in ANSI PHP gives
" headers already sent " error .
Is this normal ? an …
-1
votes
1answer
52 views
Regex to replace ampersands, but not when they’re in a URL
So I have this regex:
&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)
That matches all &'s in a block of text
However, if I have this string:
& & & & & <a hr …
1
vote
2answers
29 views
Getting strange characters in text in Drupal…probably encoding issues, but how to solve
Good day.
In my Drupal site, strange characters appear in text. Like, instead of what I expect "ideéenbus" I get De ide�enbus
(I hope this comes out right here)
Now this has to …
1
vote
3answers
24 views
How do I set database default Encoding?
How do I set the the default encoding of my local file SQL-Server database?
Thanks.
EDIT: Removed the UTF-8
0
votes
1answer
41 views
The many ways ASP.Net seems to encode urls…
So, as from a post I put up this morning about encoding &'s in a page, this is the correct format of a URL to appear in a hyerlink:
MyPage.aspx?id=11290&anotherid=4
…
0
votes
1answer
50 views
How to display Chinese characters in ListView?
Hello there,
maybe anyone have ideas of how to display Chinese characters in the ListView control ?
0
votes
2answers
28 views
ASP.NET Excel export encoding problem
Hi!
I'm doing some Excel Exports on the ASP.NET Site.
Everything works except of the Encoding. When I open it in Excel, it looks like this:
Eingabe Kosten je Gerät Gerät:
…
2
votes
1answer
46 views
PostgreSQL + PHP + UTF8 = invalid byte sequence for encoding
I'm migrating a db from mysql to postgresql. The mysql db's default collation is UTF8, postgres is also using UTF8, and I'm encoding the data with pg_escape_string(). For whatever …
0
votes
1answer
30 views
Using FFMPEG library with iPhone SDK for video encoding
Hi,
I need to encode several pictures shot by the iphone camera into a mp4 video file and I know FFMPEG can do this (the application TimeLapser and ReelMoments do it already). I p …
0
votes
3answers
74 views
Save file with double quote
I have this code to write to a file, it works perfect but I have a case where a client who recorded double quote at the beginning and end of a record.
I can understand that by enco …
1
vote
2answers
137 views
Byte Array to String
I'm playing with bencoding and i would like to keep bencoded strings as java strings but they contain binary data blindly converting them to string will corrupt the data. What i am …
0
votes
1answer
42 views
Do I need to encode using Base 64 in my web service?
I am transferring messages to mobile devices via a web service. The data is an xml string, which I compress using GZipStream, then encode using Base64.
I am getting out-of memory …
