Tagged Questions
2
votes
1answer
171 views
Decode base64 to RGB image in matlab
I am working in Matlab environment for a project, and I have to decode a RGB image received in xml from the database server, which is encoded in base64 format. I was successful in converting image to ...
5
votes
1answer
2k views
UnicodeEncodeError: 'charmap' codec can't encode - character maps to <undefined>, print function
I am writing a Python (Python 3.3) program to send some data to a webpage using POST method. Mostly for debugging process I am getting the page result and displaying it on the screen using print() ...
0
votes
4answers
127 views
python encoder and decoder
I would like to build an an encoder and decoder using text coding.
A string "AAABBBBCDDDDDDDDDDEEDDDD" as input, returning a string "A3B4C1D10E2D4", where each alphabet symbol is followed by its ...
0
votes
0answers
93 views
Encoding/decoding issue of web content
It seems like I'm having an issue with encoding/decoding with the website content I'm processing. I'm pulling an XML file from the web and it may have like French and German characters with the little ...
0
votes
2answers
175 views
how to handle encoded cyrillic data in json using Qt?
I have a JSON but all cyrillic characters are encoded like this: \u0418\u0437\u0431\u0435.
How can I read this into QString?
0
votes
0answers
223 views
FFmpeg seeking in Mpeg4 streams
I am currently attempting to develop a player that can perform accurate seeking based on an mpeg4 elementary video stream. I'm in the planning stage and trying to decide how to go about things and I'd ...
0
votes
1answer
544 views
Solr Encoding/Decoding Data
I am trying to send a encoded string to Solr and then decode it on retrieval. My encode looks like:
public static String compress(String inputString) {
try {
if (inputString == null || ...
0
votes
1answer
591 views
speex JNI encode decode audio became noise
i am doing encoding/decoding of wav file in Android IOS.
After i decode speex encoded file,when i play it become totally noise,no speech content in file.
Here is encode/decode code for it.
#include ...
0
votes
1answer
206 views
HttpWebRequest error supporting encoding of type chunked
I made a code so download a page so uses the chunked encoding, but the result is not good - a ����� characters.
I looked at fiddler - there the characters are correct.
How can I get the correct ...
-3
votes
1answer
751 views
How to generate a license key using java
How to generate 25 digit license key using java program.how to convert the given string into 25 digit license key using encoding and decoding formats.
I use the following code .but it will give first ...
0
votes
1answer
406 views
QT: Could not decode “filename.cpp” with“System”-encoding
So i'm working on a personal project using QT 4.7. In the middle of one of my builds, ubuntu 11.10 decided to crash. This version of ubuntu has crashed on me a couple of times in the past, but never ...
0
votes
2answers
81 views
Rename file containing '©' character
We received as input in our application (running on Windows) a list of files. These files were automatically extracted from a database with a script.
Apparently some of the names are containing ...
0
votes
0answers
197 views
How to decode (\u00D8 \u00A7 \u00D) in php [duplicate]
Possible Duplicate:
How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters?
I have requested a URL using REST in PHP and I got this result
...
1
vote
3answers
2k views
Python - Encoding string - Swedish Letters
I'm having some trouble with Python's raw_input command (Python2.6),
For some reason, the raw_input does not get the converted string that swedify() produces and this giving me a encoding error which ...
0
votes
0answers
634 views
How to Encode and Decode a number (10 Digit ) in 5 digit with symbol in encoded number for ios
I need to encode a mobile number to generate a verification code .
i have a mobile number want to encode it in 5 digit number
then i want to decode that number as in original number
want to save ...
2
votes
1answer
839 views
decoding shift-jis: “illeagal multibyte sequence”
I'm trying to decode a shift-jis string, like this:
string.decode('shift-jis').encode('utf-8')
to be able to view it in my program.
When I come across 2 shift-jis characters, in hex "0x87 0x54" and ...
1
vote
2answers
4k views
decode eval function in javascript?
I got this a function eval in javascript - http://pastebin.com/E1PXQeKj
but i don't know how read it? how does this generate or decode the string?
or simply how is this code?
thanks for help!
2
votes
2answers
593 views
Can't decode html entities in title
I am having trouble decoding entities in the title from this youtube video:
http://www.youtube.com/watch?v=p7NMsywVQhY
Here is my code:
$url = 'http://www.youtube.com/watch?v=p7NMsywVQhY';
$html = ...
-6
votes
4answers
1k views
How does one decode Base64? [closed]
As seen here, they have the line ZG9udGJlYWhhdGVyc3RhcnR1cCtoYWNrZXJuZXdzQGdtYWlsLmNvbQ==.
How would one go about decoding this line of Base64?
2
votes
2answers
902 views
shift jis decoding/encoding in perl
When I try decode a shift-jis encoded string and encode it back, some of the characters get garbled:
I have following code:
use Encode qw(decode encode);
$val=;
print "\nbefore decoding: $val";
my ...
2
votes
2answers
5k views
UTF8 Encoding in Android when invoking REST webservice
I'm invoking a rest WS that returns XML. Some elements have strings include special characters like áãç etc...
When I get the information via browser all of it is shown properly but when invoking it ...
0
votes
2answers
449 views
How to decode Feedburner result containing \x3c and so on
Feed burner changed their blog service return results that it returns blocks of javascript similar to:
document.write("\x3cdiv
class\x3d\x22feedburnerFeedBlock\x22
...
1
vote
2answers
1k views
MySQL Collation or PHP side to display accented letters properly
What is the best Collation for the column that can allow to store accented letters and parse them out perfectly without any encoding error, because whenever I add an accented letter such as é, å, it ...
0
votes
2answers
505 views
How to decode a string on runtime in java?
I'm creating email client, when i receive emails from blackberry server it sends file name as "=?utf-8?B?anBlZ2F0dGFjaG1lbnQuSlBFRw==?=" but the original filename was "jpegattachment.JPEG", and ...
1
vote
5answers
2k views
encoding/decoding string and a special character to byte array
Hi
I had a requirement of encoding a 3 character string(always alphabets) into a 2 byte[] array of 2 integers.
This was to be done to save space and performance reasons.
Now the requirement has ...