To convert some encoded data (e.g. bytes, electrical signals) to some representation ready for further processing (e.g. string, object, picture)
36
votes
2answers
57k views
Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?
Basically I would like to decode a given Html document, and replace all special chars, such as " " -> " ", ">" -> ">".
In .NET we can make use of HttpUtility.HtmlDecode.
What's ...
44
votes
4answers
26k views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTemplate matching. ...
14
votes
3answers
20k views
Using an Alias in a WHERE clause
I have a query which is meant to show me any rows in table A which have not been updated recently enough. (Each row should be updated within 2 months after "month_no".):
SELECT A.identifier
, ...
71
votes
6answers
60k views
JSON stringify missing from jQuery 1.4.1?
Apparently jQuery has the ability to decode a given object or string into a JSON object. However, I have a JS object that I need to POST back to the server and I find no utility in jQuery that wraps ...
12
votes
3answers
7k views
How do I decode a string with escaped unicode?
I'm not sure what this is called so I'm having trouble searching for it. How can I decode a string with unicode from http\u00253A\u00252F\u00252Fexample.com to http://example.com with JavaScript? I ...
9
votes
3answers
14k views
UnicodeDecodeError, invalid continuation byte
Why is the below item failing? and why does it succeed with "latin-1" codec?
o = "a test of \xe9 char" #I want this to remain a string as this is what I am receiving
v = o.decode("utf-8")
results ...
0
votes
3answers
3k views
How to decode this PHP code?
I want to decode this code. I have no idea what it is, except that it is some kind of code.
Can someone help me please?
<?php if (!function_exists("T7FC56270E7A70FA81A5935B72EACBE29"))
{
...
14
votes
9answers
17k views
eval base64_decode php virus
my site (very large community website) was recently infected with a virus. Every index.php file was changed so that the opening php tag of these files it was changed to the following line:
<?php ...
19
votes
4answers
27k views
AJAX POST and Plus Sign ( + ) — How to Encode?
I'm POSTing the contents of a form field via AJAX to a PHP script and using Javascript encode(field_contents). The problem is that any plus signs are being stripped out and replaced by spaces. How ...
6
votes
1answer
4k views
Cross platform (php to C# .NET) encryption/decryption with Rijndael
I'm currently having a bit of problem with decrypting a message encrypted by php mcrypt.
The php code is as following:
<?php
//$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, ...
34
votes
14answers
43k views
QR code (2D barcode) coding and decoding algorithms?
Looking for free/opensource code or description of algorithms to code (simple) and decode (hard) the 2D barcode QR code.
It doesn't seem like a trivial problem, but it's so popular in Japan that ...
4
votes
1answer
3k views
Convert formatted HTML text string to NSString parts
I want to decode HTML string and store it in NSString.
following is the html string for one of the response from google direction api.
teststring is Turn <b>right</b> onto ...
0
votes
2answers
5k views
How to decode audio via FFmpeg in Android
I am writing a player for Android with FFmpeg compiled for Android NDK.
I could open the file through FFmpeg and wrote this:
av_register_all();
char* str = (*env) -> GetStringUTFChars(env, ...
0
votes
1answer
752 views
Decode: eval(stripslashes(gzinflate
I can't seem to decode this base64 string which is in the footer of a wordpress theme. I want to be able to add more to the footer.
Any help appreciated, thanks!
<?php ...
24
votes
1answer
11k views
Decode HTML entities in android
I need to decode HTML entities, e.g. from ö to ö, and & to &.
URLEncoder.decode(str) does not do the job (convert from % notations). TextUtils has a HTMLencode, but not a ...
24
votes
4answers
23k views
Decode & back to & in javascript
I have strings like
var str = 'One & two & three';
rendered into HTML by the web server. I need to transform those strings into
'One & two & three'
Currently, that's ...
6
votes
5answers
21k views
Decode base64 String Java 5
Is there a straight forward way to decode a base64 string using ONLY THE JAVA 1.5 LIBRARIES?
I have to use Java 1.5 due to cross platform compatibility issues between Windows and Mac OS X (only Mac ...
4
votes
4answers
2k views
Decode this strange Javascript
I came across this code in a .js file. What is this code ??
I have downloaded that file onto my localhost webserver.Keeping this code in the .js file redirects me to google.com and when i am ...
13
votes
1answer
2k views
Decoding Video using FFMpeg for android
I tried to decode video using FFMpeg library from the sample examples available on internet, i figure it out with new version of ffmpeg,
here is the code which I called from my class file,
private ...
10
votes
3answers
11k views
How to decode H.264 video frame in Java environment
Does anyone know how to decode H.264 video frame in Java environment?
My network camera products support the RTP/RTSP Streaming.
The service standard RTP/RTSP from my network camera is served and it ...
2
votes
3answers
352 views
How to decode some number into timeDate?
This question is sequel of this one.
So any idea how to decode this number 5252235562500 into date and time 19.11.2010 15:43 ?
I have more pairs like this and I'm thinking about some script for ...
6
votes
3answers
5k views
Decoding double encoded utf8 in Python
I've got a problem with strings that I get from one of my clients over xmlrpc. He sends me utf8 strings that are encoded twice :( so when I get them in python I have an unicode object that has to be ...
6
votes
5answers
9k views
Reading and decoding PDF-417 barcodes stored in an image or PDF file from within a .NET application
I am looking for a .NET library that is able to decode data from a PDF-417 barcode that is embedded either in an image file or PDF. At this point, I have only been able to find a Java version and a C ...
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 ...
1
vote
3answers
3k views
Decoding qr code from image stored on the phone with Zxing (on Android phone)
I have an app that receives qr code from the server. I want to decode it (not with intent and camera) and display the text it contains in my app. I have alredy done this in Java SE with jars from ...
9
votes
4answers
6k views
Best way to handle email parsing/decoding in PHP?
Currently I'm using the PEAR library's mimeDecode.php for parsing incoming emails. It seems to have a lot of issues and fails to decode a lot of messages, so I'd like to replace it with something ...
6
votes
3answers
3k views
How to decode numeric HTML entities in PHP
I'm trying to decode encoded long dash from numeric entity to string, but it seems that I can't find a function which can do this properly.
The best that I found is mb_decode_numericentity(), ...
2
votes
2answers
481 views
rewrite and url decoding
It seems a site is linking to mine in a bad way.
From google webmaster tools I see some 404 errors
domain.com/file.php?id=1 (404) Not found (Date)
This url works ok but because of browser page ...
1
vote
6answers
4k views
Extracting raw audio/waveform from an MP3
This question has been in my mind for a few years and I never actually found the answer for this.
What I would like to do is extract the actual waveform/PCM of an MP3 file, so that I can play it ...
4
votes
1answer
2k views
Use (Python) Gstreamer to decode audio (to PCM data)
I'm writing an application that uses the Python Gstreamer bindings to play audio, but I'm now trying to also just decode audio -- that is, I'd like to read data using a decodebin and receive a raw PCM ...
1
vote
5answers
2k views
PHP decoding json
could anyone here help me with php an decoding json? Im trying to decode a json api url
Here is what I have at the moment:
$string = '
{
"username": "someusername",
...
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
...
4
votes
1answer
8k views
Android - How to decode and decompile any APK file?
I'm working for ads. My customers give me some APK files of their Apps. My work is insert ads banners into them. After close ads banners, these apps will run.
My question is : How to decode and ...
3
votes
5answers
238 views
decoding algorithm wanted
I receive encoded PDF files regularly. The encoding works like this:
the PDFs can be displayed correctly in Acrobat Reader
select all and copy the test via Acrobat Reader
and paste in a text editor
...
2
votes
5answers
4k views
Python - Converting Hex to INT/CHAR
I am having some difficulty changing a hex to an int/char (char preferably). Via the website;
http://home2.paulschou.net/tools/xlate/ I enter the hex of C0A80026 into the hex box, in the DEC / CHAR ...
0
votes
2answers
2k views
Decode a wordpress theme [duplicate]
Possible Duplicate:
PHP decode starting with $OOO000000=urldecode('%66%67%36%73%62%65%68%70%72%61%34%63
This wordpress theme can get a big 10 on evil scale. The functions.php file is ...
-1
votes
3answers
253 views
Decode data with Json in PHP
i need decode this Json with the PHP, but i dont know how. I saw this function php.net/json, but it haven't how to decode this type of data.
{"c":[{"v":"0","e":"","n":"45","cc":"PSDB - PTB \/ PPS \/ ...
-3
votes
1answer
3k views
Need help decoding obfuscated file [closed]
I downloaded a free reviews script from http://www.freereviewscript.com
One of the files is encoded and I want to ensure it doesn't have anything malicious!
Any help would be much appreciated!
Thank ...
6
votes
5answers
6k views
How to decode huffman code quickly?
I have implementated a simple compressor using pure huffman code under Windows.But I do not know much about how to decode the compressed file quickly,my bad algorithm is:
Enumerate all the huffman ...
8
votes
5answers
1k views
InputStreamReader buffering issue
I am reading data from a file that has, unfortunately, two types of character encoding.
There is a header and a body. The header is always in ASCII and defines the character set that the body is ...
4
votes
2answers
3k views
iOS - How to decode image with zxing
I need to decode an QR image using the zxing library for iOS.
I'm new to iOS programming, and have been looking through the code examples included in the project, but I can't figure out how to just ...
4
votes
3answers
4k views
How can I decode UTF-16 data in Perl when I don't know the byte order?
If I open a file ( and specify an encoding directly ) :
open(my $file,"<:encoding(UTF-16)","some.file") || die "error $!\n";
while(<$file>) {
print "$_\n";
}
close($file);
I can read ...
20
votes
4answers
1k views
Fastest PNG decoder for .NET
Our web server needs to process many compositions of large images together before sending the results to web clients. This process is performance critical because the server can receive several ...
7
votes
5answers
4k views
Is there a faster way to decode html characters to a string than Html.fromHtml()?
I am using Html.fromHtml(STRING).toString() to convert a string that may or may not have html and/or html entities in it, to a plain text string.
This is pretty slow, I think my last calculation was ...
5
votes
6answers
7k views
wav <> mp3 for flash(as3)
Dear All,
I'm wondering about MP3 decoding/encoding, and I was hoping to pull this off in Flash using AS3
I'm sure it'll be a right pain...
I have no idea where to start, can anyone offer any ...
9
votes
4answers
7k views
ASP.NET MVC URL decode
I have an action like this:
<%=Html.ActionLink("My_link", "About", "Home", new RouteValueDictionary {
{ "id", "Österreich" } }, null)%>
This produces the following link: ...
5
votes
4answers
2k views
Is it possible to decode EventValidation and ViewState in ASP.NET?
How to decode the ASP.NET EventValidation and ViewState?
4
votes
1answer
633 views
Encode Decode of strings python
I have a list of html pages which may contain certain encoded characters. Some examples are as below -
<a href="mailto:lad%20at%20maestro%20dot%20com">
...
3
votes
1answer
754 views
BitmapFactory.decodeResource() ignores inPreferredConfig option for jpg images
I try to load jpeg resource image to Bitmap of ARGB_8888 format:
BitmapFactory.Options opts = new BitmapFactory.Options();
opts.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap b = ...
3
votes
4answers
1k views
PHP: Help decoding malicious code
eval(gzuncompress(base64_decode('eF5Tcffxd3L0CY5WjzcyNDG2NDc3MLGMV4+1dSwqSqzU0LQGAJCPCMM='))); ...
