Most voted "encode" questions
27 questions
Sort by count of
-
6
votes1
answer483
viewsMigration, Delphi and Firebird. What is the correct way to deal with the Encounter issue?
I have a project in Delphi 7 that makes use of Firebird. I think about migrating this application to a Delphi XE version*. However, we know that from Delphi 2009 the String standard is Unicode and…
-
5
votes2
answers710
viewsStatic string being created with wrong Encode
Hello, When creating a string in a Java class (for example: String t = "Ola Java!"), it seems that the compiler is choosing the 'wrong' encounter to interpret the bytes that are in the source and…
-
5
votes1
answer850
viewsHow to encode and decode Base64 strings in C?
I need to encode (and decode) a JSON to be transmitted from the Web to a microcontroller. The JSON that I am sending is encrypted with the AES 128, but the cyphertext It contains non-printable…
-
5
votes0
answers148
viewsMojofailureexception caused by charsetName in Maven Archetype
A WAR project I’m trying to use as a base to run mvn archetype:create-from-project causes the following Exception stack after trying to read one of the files .java: [ERROR] Failed to execute goal…
-
4
votes2
answers402
viewsWrong formatting when opening a latex generated PDF
In my program I need to open a PDF file and pick up the text that contains it. But when opening the PDF, the text comes badly formatted. For example: Please to `my fam ? read by ? measure efforts…
-
4
votes2
answers962
viewsWhat is the difference between Encoding, Encryption and Hashing?
I’d like to understand the difference between Encoding, Encryption and Hashing and also examples of when using one or the other.
-
3
votes1
answer62
viewsLoss of Encode when minimizing javascript in Grails
In my javascript file there is a message with the string "service" for example. When I run the project (run-app) and check the javascript by the browser, the word appears as: "§the service". But…
-
2
votes1
answer5078
views -
2
votes1
answer51
viewsLengthy client side image rendering
I use on a web page images that are loaded from a field of type blob in the Firebird. The images open in a modal, fully loaded, that is, without using thumbnails, and when the user clicks on one of…
php html twitter-bootstrap image-processing encodeasked 9 years, 4 months ago Giancarlo Abel Giulian 3,999 -
2
votes2
answers520
viewsencoding php to mysql database
Well, I have a problem with encode when throwing dice on a table mysql for php, my page is with encode utf-8, my bank using latin1, however, I do not know how I do such a conversion, if I change the…
-
2
votes1
answer11955
viewsJSON return with special characters in URL
I’m having a problem with the return of a JSON, I made a query to fetch some images from the database, some URL users registered the images with special characters like -> (ç ã) the texts that…
-
2
votes2
answers1011
viewsProblem running project - Special characters
Good afternoon, I migrated my project to Intellij IDEA and when executing a code that should print an accentuated string, I got the return: "m? all" (method). Classes display the accent correctly…
-
2
votes1
answer1087
viewsHow to verify if a String is encoded in Base64?
I am working on an email application using Vuejs/Quasar on the client and Hapijs on the server, and some emails (depends on the sender) comes with the text encoded in Base64, and others not. Here…
-
2
votes1
answer1092
viewsAngularjs - Problems with accentuation
I’m getting strings on servlet with problems in accentuation. Such as for example: Send $scope.nome = "Pé" to the servlet. In the servlet the line: String nome = request.getParameter("nome"); does…
-
2
votes2
answers902
viewsFunction Encode() and hash creation
I’m using Python 3.6 to make a program in which the person types an MD5 hash, then the program saves the hash in a variable, reads a txt file and plays the content inside a list, where each name…
-
1
votes1
answer808
viewsConvert string to WE8MSWIN1252
Starting working with PHP+Oracle, and I’m having trouble encoding the strings in WE8MSWIN1252 format for oracle. Does anyone have more information?
-
1
votes1
answer472
viewscharacter error when decoding a variable from js to php
Good morning, I’m a problem that I do not know the reason, I have a code encoded in Base64 and I inserted this code into a js variable, from php to js, it worked more perfect impossible, ai I passed…
-
1
votes1
answer39
viewsProblems with SQL x PHP enconding
I have the following problem: My files are coming out with accentuation problems, my tables use utf-8 as encondig, html files are marked utf-8 and even so accents do not work: <html>…
-
0
votes1
answer2731
viewsAccent error while saving Python file
I’m not being able to save a file with an accent in python, I’ve come to ask for your help; import csv f = open('output.txt', 'w') data = [] def parse(filename): with open(filename, 'r') as csvfile:…
-
0
votes0
answers93
viewsHow to resolve Encode error
Recently I had a question here about how to solve a accent problem , and managed to help me in the following way: echo utf8_encode($row['nome']);. But there was one small mistake, which I’m failing…
-
0
votes1
answer62
viewsFind out which Encode was used in a form
I’m making a request for the site: http://sistemas.cvm.gov.br/? PAS Before making the request, they make a Match of the filters. For example, when I pass Unfair practices he shrunk to…
ruby-on-rails ruby character-encoding web-crawler encodeasked 4 years, 9 months ago Willian Lucio 1 -
0
votes1
answer66
viewsHow to remove PHP Randomization encryption
I have a code but every time when updating the page it generates a random encryption key, I would like to know how to leave it to generate a unique key for each url, below follows the code: $gKey =…
-
0
votes1
answer42
viewsHow do I resolve a problem of renaming ENCODED URL files?
How to troubleshoot this problem of renaming ENCODED URL files? When converting a list of URL ENCODED files through the following code from urllib.parse import unquote import os, shutil cwd =…
-
0
votes1
answer34
viewsError while getting Bytearray from.3gp file on Android/Java
I am trying to convert a file from audio.3gp for string Base64 and send to the server using Volley, but for all I know, I need to transform the audio.3gp in Bytearray and transform that array string…
-
0
votes1
answer160
viewsPython Encoding Problem
I’m trying to pull the hashtags used in some Instagram profiles using the code: import pandas as pd import requests import re req = requests.get("https://www.instagram.com/globorural/") texto =…
-
-1
votes1
answer83
viewsENCODE PROBLEM WHEN SEARCHING FROM THE ASP Classic (SQL SERVER)
All Asp pages are as UTF-8. I look for the title of a table in the database by passing by parameter(request), but when displaying always displays with Ncode problems, I use IE because of the system…
-
-2
votes0
answers21
viewsEncode filenames in Base64 in python?
I need help from you to implement a python code to encode the filenames in Base64 and name it right away and then code and then decode back the filenames of those files. import os import base64…