Questions tagged as 'character-encoding'

0
answers

Compiling and running the java and maven application with the same encoding

I have an application that I'm compiling using maven from the command line. In my pom.xml I specified encoding using: <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <projec...
asked by 01.08.2018 / 20:46
0
answers

SpringFramewok HttpMediaTypeNotSupportedException: Content type 'text / plain; charset = UTF-8' not supported

I've been trying to find solutions to this error and can not find it. Error:    2018-07-24 16: 44: 50,541 WARN 25695 --- [nio-8080-exec-2]   .w.s.m.s.DefaultHandlerExceptionResolver: Resolved caused caused   by Handler execution:   org.s...
asked by 24.07.2018 / 21:50
0
answers

Convert charset Latin1 to Utf-8 at column level

I have a huge bank in Latin1 and I need to convert ALL the values of ALL the columns of the bank. Searching discovered a command that does this manually. UPDATE tabela SET coluna = CONVERT(cast(CONVERT(coluna USING latin1) AS BINARY) US...
asked by 18.07.2018 / 18:38
0
answers

Special characters breaking XML in SQL SERVER

I recently had a problem reading an XML, where the value of the field seems to have a special character. Below is the snippet I created for the problem declare @xml as xml set @xml = '<ConsumerList> <Consumer> <Sourc...
asked by 10.07.2018 / 20:52
0
answers

Problems with Enconding Character - Oracle

Hello, I have a base oracle and when I make a select of a specific field the information that returns has accentuation, ex: "RECEPTION" But when I save this information in a text file using the UTL_FILE.PUT_LINE (FIELD) the information in the...
asked by 21.05.2018 / 22:10
0
answers

IDLE software locks with encoding

I have developed a program that, for your use, automatically creates another program on the user's Desktop. In order for the second to run in CMD or IDLE directly, it is necessary to convert the cp1252 encoding to utf-8. For this I followed a St...
asked by 27.04.2018 / 02:56
0
answers

PHP application migration windows server

Good afternoon, guys. I'm having an application on a server with encoding in ISO-8859-1 and I'm migrating to another server with window. The application is working except for errors with special characters. I gave a searched and tried to convert...
asked by 06.04.2018 / 22:39
0
answers

Avoid changing the special characters in URI writing

I'm using the google maps API in my project but I'm having a little problem. To mount the URL I'm using a URI that concatenates with buildUpon so with the example below. Uri uriBase = Uri.parse(urlBase).buildUpon() .appe...
asked by 06.03.2018 / 20:54
1
answer

Forms in Python

I needed a help with cgi forms in python. This code works normally when I do not enter accents: # !/Programas/Python36-32/python # -*- coding: utf-8 -*- import cgi print("Content-Type: text/html; UTF-8\n") form = cgi.FieldStorage() web_page=""...
asked by 21.01.2018 / 14:26
1
answer

Difficulty of defining charset in PHP [duplicate]

I tried to make a program that assigns a certain color sequence to all the characters, but the result is not as expected and everything indicates that there is a "charset " setting. Then I'm going to put the code together with an image of t...
asked by 04.12.2017 / 20:12