Tagged Questions
0
votes
1answer
25 views
http response coming back obfuscated
I am making a call to a clients api, and it comes back like this
"user_firstname": "à¸à¸£à¸±à¸à¸à¸²à¸à¸´",
"user_lastname": "ศรีà"
I have no idea what to do with this.
I have tried every kind ...
-1
votes
2answers
60 views
Java reverse encoding
so I'm making a program where you can either encode or decode a message using a keyword. I have the encoding part down but I'm not sure how to decode the message. I am new to java so any help would be ...
1
vote
0answers
29 views
Unable to decode content with header X-Content-Type-Options: nosniff java
here is my code to get the capcha html but im getting the response which is totally not understandable, can anyone help me?
when i run this below code, im getting the output printed in different ...
0
votes
1answer
39 views
How to convert into cyrillic
Good day.
I got string like this from server
\u041a\u0438\u0441\u0435\u043b\u0435\u0432 \u0410\u043d\u0434\u0440\u0435\u0439
I need to convert it into cyrillic cp-1251 string.
How do i do it? ...
0
votes
3answers
52 views
How do decode html entities in java? [duplicate]
I'm trying to decode html entities in Java, but I noticed that
URLDecoder.decode(String stringToDecode, String charset);
is deprecated.
What should I use instead of it?
-1
votes
0answers
46 views
Writing a base64-encoded file in Java [duplicate]
I have a problem to write a file encoded in base64.
I have the contents of a xml files stored in a field of a table in a database. Some of them are stored in base64, not all.
What I need is to write ...
0
votes
1answer
88 views
Decode .bmp image
I just started studying computer science and our teacher gave us this small, but tricky programming assignment. I need to decode a .bmp image http://postimg.org/image/vgtcka251/ our teacher have ...
0
votes
0answers
119 views
Read the file to character matrix
I have a problem with that solution, imnot sure how can i get all characters from ascii.txt to a 2d matrix.
public abstract class AssignmentDecoder {
public static final String INPUT_FILE_NAME = ...
-1
votes
1answer
154 views
Decode url containing encoded parameters in servlet [closed]
In my application , I get an URL containing encoded parameters
I want to use the url after decoding params
Example:
...
2
votes
0answers
149 views
android fastest way to decode mp3 to pcm data
in my app i need to decode an mp3 file into a pcm buffer. that's a lot of data so i downsample it to mono 22050Hz as i read and decode it.
at the moment i'm using javazoom jlayer decoder ...
1
vote
1answer
213 views
Decode of base64 string containing zip file gets 8 character codes wrong in result string
I'm receiving a base64-encoded zip file (in the form of a string) from a SOAP request.
I can decode the string successfully using a stand-alone program, b64dec.exe, but I need to do it in a java ...
0
votes
1answer
84 views
Encode-DecodeAdventure
I tried to encode special characters in javascript using encodeURI() and encodeURIComponent() functions and decode them using the java.net.URLDecoder.decode() method and this worked like a charm in ...
3
votes
3answers
111 views
A way of getting a corresponding hex colour code given a Color object in Java?
I've inspected the Java class documentation for Color and found that I can generate a Color object from a hex code string (e.g. "#FFFFFF") using the Color.decode(); method.
I would like to implement ...
-2
votes
5answers
498 views
Convert UTF-8 encoded string to human readable string
How to convert any UTF8 strings to readable strings.
Like : ⬠(in UTF8) is €
I tried using Charset but not working.
1
vote
3answers
77 views
IPv6 is encoded in request parameter
My REST resource (using Jersey) receive IPv6 address using QueryParam.
When the address value received in the resource, some of its characters are encoded, don't know with which algorithm.
For ...
-4
votes
3answers
104 views
How to encode a String to Byte[]
I have a string that contains hex numbers
But i want to decode them to text and convert them to a string
If my the string is "FF505000010000000A00015634"
They are in hex, how do i make them to \xFF ...
1
vote
0answers
106 views
Android Parcelable class says: JavaBinder -> FAILED BINDER TRANSACTON.. (BIG-DATA)
Can parcalable class pass data over 40k?
My Parcalable class look like this: http://paste.ubuntu.com/1450245/ (line: 228 and 261)
public ApplicationsModel(Parcel parcal)
{
this();
...
3
votes
3answers
371 views
How to avoid encoding null (\u0000) when reading from InputStream
I am reading a request body and put it into an input stream. While I am explicitly saying the decode method, I still get many \u0000 (Null) after the string.
InputStream is = ...
0
votes
3answers
2k views
how to decode html codes using Java? [duplicate]
Possible Duplicate:
Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?
I need to extract paragraphs (like title in StackOverflow) from an html file.
I can ...
8
votes
2answers
318 views
Efficient decoding of binary and text structures (packets)
Background
There is a well-known tool called Wireshark. I've been using it for ages. It is great, but performance is the problem. Common usage scenario includes several data preparation steps in ...
0
votes
0answers
52 views
Decode Java (BouncyCastly) DERBMPString Object
Hi have the following Object from the BouncyCastle Java libraries.
org.bouncycastle.asn1.DERBMPString
Can anybody advise on how to decode and get the contents of this object.
If I dump the ...
-1
votes
2answers
240 views
Decoding a “quoted-printable” string in Java
I would like to use javax.mail.internet.MimeUtility to decode a "quoted-printable" string. I do not need any other interface to a mail server. What's the best way to get at that class (and its ...
0
votes
0answers
40 views
How does StreamDecoder deal with leftover bytes?
I saw StreamDecoder source code and found that when it found a char, then it save the left over bytes. How does it check the boundary of 2 chars?
3
votes
1answer
195 views
Multiple messages contained in one netty buffer issue
I've built a login server for a game client using the netty networking library.
This game client likes to send multiple packets in a single buffer, which poses an issue; that issue being the fact that ...
1
vote
4answers
2k views
best encode decode for binary file in java and c#
i know there is many types of encode and decode and from what i have read, base64 is a great choice when it comes to encode binary file (image, mp3, video).
Now, when it comes to decode, i will need ...
0
votes
2answers
171 views
Integer decode porting from Java to C#
I am trying to port some code from java to C#, I have faced 2 problems so far. Here is the Java code:
public static void main(String[] args)
{
var ia = new byte[args.length];
for (int i = 0; ...
2
votes
1answer
600 views
Base64 String corrupt from Java
There is a fair amount of code here so bare with me. I have a phonegap plugin I altered. The Java part outputs a base64 string:
package org.apache.cordova;
import java.io.ByteArrayOutputStream;
...
2
votes
1answer
132 views
How can I decode chinese
I am just about to start decode something that I am sure is chinese and it looks like this in the database: 衡
The Sybase encodes is windows-1252 by default, but what is the above? How can ...
-4
votes
3answers
121 views
How to decode this line of code?
/Detail?entitytype=2&searchtype=2&id=1749495&start=101&end=200
Is it UTF-8 or Unicode? I've tried both, but ...
0
votes
0answers
67 views
Sniff and decode the live java objects over a network
Is there any tool available to the sniff and decode the live java object / transacrion over the network.plz assist.
1
vote
0answers
79 views
open.mapquestapi.com: http-response decoding in Java
I want to use open.mapquestapi.com within Java. It works fine, as far as I have to care for (german) umlauts, let's take as example the german city "Köln".
In Java, i don't get the ...
0
votes
0answers
199 views
Decode a double-encoded string - java esapi
How do I decode a double-encoded value like %3c%77%68%73%63%68%65%63%6b%3e
which is being generated by:
${titleUpdated} ${hiphenText} ${homeTitle}
to just be encoded ONCE and then converted to ...
0
votes
1answer
289 views
How to get the the single images of an mp4-Movie in Java
I want to do some image analysis on a video that's stored in .mp4 format. Therefore I need a way to just get the images of this movie in Java.
I goolged a lot and found some libraries like jcodec and ...
0
votes
0answers
72 views
Not Getting an Illegal Argument Exception when Decoding a NONBase64 String in Java
I used both javax.xml.bind.DatatypeConverter and sun.misc.BASE64Decoder. But when i give nonBase 64 strings i get no exceptions with BASE64Decoder
so
public static void main(String[] args) throws ...
1
vote
0answers
390 views
iOS and Java - How to decode UTF-8 encoded NSData on server programmed in Java?
I am sending JSON from my iPhone app to my server which is Play Framework's Java app and deployed on Heroku Cloud.
Here is my code i am using in my App.
self.url = [NSURL ...
0
votes
1answer
256 views
Java: get frames from animated GIF without ImageReader
I'm developing AppEngine application. One of it's features is splitting an animated .gif image into separate frames. I've searched a lot to find the way how to do it and finally found the solution. ...
0
votes
0answers
189 views
Replace percent sign with matching chars Java/Android
I have a text contain %3A%2F%2F and a lot of percent sign and im looking for an object that can replace this sign with matching chars like "stringByReplacingPercentEscapesUsingEncoding" in xcode.
I ...
-3
votes
1answer
314 views
String decoding using UTF-8 [closed]
I have a string in the database that was encoded in the .Net application using RSA. After further converting it into the hexadecimal string the final string in database look as follows:
...
0
votes
1answer
491 views
How to decode the attachment file in [MIME] java mail
I am unable to decode the attachment. It something like =?utf-8?B?MS5qcGc= which is encoded. I need to decode that attachment.
The java code i am using to decode
private static String ...
0
votes
3answers
194 views
Packing many bounded integers into a large single integer
I have to store millions of entries in a database. Each entry is identified by a set of unique integer identifiers. For example a value may be identified by a set of 10 integer identifiers, each of ...
0
votes
0answers
189 views
Encode and Decode with C++ and Java [closed]
Does someone know a method to encode and decode from C++ to Java or vice versa?
It is better if I can encode it with a password, but not a problem if it dosn't.
0
votes
1answer
73 views
What is the best approach for code-decode of business-attributes with a range [closed]
I am looking for advices, best-practises, for a special design that stores business-codes in a central place.
By codes, I mean something like certain attributes of a business-object that have a ...
-4
votes
1answer
2k views
Huffman Coding Algorithm? [closed]
I found a source code of somebody creating a Huffman Coding algorithm. After I read the code, I didn't see any problem. So I downloaded it, and tried to run it. But then, it doesn't run (compiling ...
1
vote
2answers
459 views
Cannot decode BASE64 to Image file in Selenium 2
I have a BASE64 image from a screenshot capture that I would like to convert in a image.png file but there are compilation errors that I cannot understand.
Object ss = ((TakesScreenshot) ...
0
votes
1answer
540 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 || ...
-3
votes
1answer
742 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
318 views
JNDI does not decode BASE64 string properly when connecting to LDAP
I am using JNDI to connect to a LDAP server. A few attributes on the server are stored as BASE64 string.
However, when I query the server and get results back. These attributes are already decoded ...
1
vote
2answers
292 views
Parsing java streams
I am trying to access data from a raw data stream. Before accessing the raw data stream, I must parse/remove any traces of xml. I do this by converting the raw stream to a string array and by ...
0
votes
2answers
198 views
java - json extract/decode issue - json within json?
very simple java/json question.
I have the following test chunk of code. I can get the 1st element using the ".get()" by either index, or by the key. but I can't get any other elements by key...
The ...
2
votes
2answers
260 views
Getting a Server's encoding using Java
Is it possible to programmatically get the encoding scheme used by, say Tomcat, to decode a GET parameter?
I know you can force Tomcat to use specific encodings, but this is for when i can't control ...


