Tagged Questions
0
votes
2answers
24 views
Preserve unicode codepoints between ISO-8859-1 to UTF-8 conversions in XML in Java
Please note this is not the same question as
How do I convert between ISO-8859-1 and UTF-8 in Java?
Since XML escaping to preserve codepoints is possible.
I have a UTF-8 XML file which I can ...
0
votes
1answer
19 views
XMLSyntaxError in lxml python
I'm using pyKML to parse a KML.
Here's my code:
# -*- encoding: UTF-8 -*-
import codecs
from pykml import parser
kml_str="""
<?xml version="1.0" encoding="UTF-8"?>
<kml ...
0
votes
0answers
25 views
Google Calendar RSS feed UTF-8 latin letter issue (�)
I'm reading a Google Calendar RSS feed with PHP which in my local version it works great, but as soon as I uploaded it to my server, I saw, that the output of letters such as æ ø å ö ä ÿ ü and so on ...
0
votes
1answer
40 views
Trying to send xml in utf-8 over socket in Android
I have an Android app that sends xml files to a server. If I set the encoding of the xml header to utf-8 it all works until there is a weird character like a japanese symbol for example, in this case ...
0
votes
0answers
17 views
Greek-UTF8 Folder Name to FLASH not working (php and xml)
I am using an xml file to load contents into a FLASH movie from my server. When the folder or the file has an English title there is no problem it loads correctly. But, when a file or folder has a ...
0
votes
1answer
71 views
convert oracle blob to xml type
I have experience using MSSQL 2008 I now recently had to move from MSSQL to Oracle 10g.
The people who designed the (oracle) table which has a column I need to extract data from used a BLOB type to ...
0
votes
0answers
38 views
Sending data to php from android - content type encoding error
I am sending some data from my android app to my php web service. It is intended for the web service to then insert my data into my PostGreSQL database which as UTF8 encoding enabled. However I am ...
0
votes
0answers
29 views
XML emitted from PHP does not show correctly in IE 10 source view
I try to emit an XML document from a PHP (engine is 5.3) script. The page displays correctly in IE 10 and Firefox. I can see the XML tree as I do not use a stylesheet. I can also see the raw XML in ...
0
votes
4answers
103 views
How to construct and write an XML file?
This question ia about writing XML data from a LiveCode stack to a file.
Chapter 6.7 of the User's guide talks about the XML functions LiveCode provides. I am looking for examples which show how to ...
0
votes
2answers
63 views
convert “é” to “é” in PHP? [duplicate]
What is the best way to convert a string will XML entities like é to => éin PHP ?
$string = "\xe9"; // é
echo utf8_encode($string );
is working great,
but what to do with é
...
1
vote
4answers
129 views
How default is the default encoding (UTF-8) in the XML Declaration?
I know that the default encoding of XML is UTF-8. All XML consumers MUST and so on and so forth. So this is not just a question whether or not XML has a default encoding.
I also know that the ...
0
votes
0answers
28 views
parse special characters using SAXParser
The flow is as below :
1.My Java servlet is consuming an xml data from my PHP file.
In my PHP, I have added a header :
header("Content-Type:text/xml");
echo "<?xml version=\"1.0\" ...
0
votes
1answer
28 views
Presenting Multiple Encodings in XML
I'm making available an email API that allows you to obtain the content of certain emails via XML/JSON.
My problem is, I have a list view where I want to present the text of multiple emails at once. ...
0
votes
2answers
72 views
XSLT Encoding Issue
I have the following XML:
<item>
<description><![CDATA[Euro sign: €]]></description>
</item>
When I run it against this XSL:
<xsl:stylesheet version="2.0" ...
0
votes
2answers
40 views
Encoding Error in PHP Generated XML File
I have generated an XML file in PHP using the DOMDocument class, the data was grabbed from a MySQL database. A lot of the data contains HTML markup, but I've encased all of it in a CDATA section.
At ...
0
votes
1answer
40 views
Special caracters within the code - PHP [duplicate]
in my code i have to show some element of an object ( a xml file), but the problem i am having is that the names of the elements contain special caracters like "é", "à", "è" "ç" etc...
so when i try ...
0
votes
0answers
65 views
Strange characters after inserting string from utf8_decode into a mysql table with PHP 5.3/Doctrine 1.2
I'm consuming a xml (i get it by a rest service). At one point i decode a CDATA field as:
$version_doc = $this->getSimpleXml($uri);
if($version_doc != false){
$equipment = ...
1
vote
2answers
101 views
Spanish characters are not displayed by browser
I need to support Spanish language for a website which I am developing. I have created an XML file which contains the english text and corresponding Spanish text. I am reading this XML file on user's ...
1
vote
0answers
70 views
How do I encoding my java web start application title on JRE7?
I have a JWS Application and it's title is Chinese. It works fine on jre6. But on jre7, it don't encode shortcut title on windows 7(or Windows XP) correctly, The Java Cache Viewer dialog and ...
1
vote
1answer
100 views
xslt transformation to html encoding UTF-8
this is the xml:
<?xml version="1.0" encoding="UTF-8"?>
<title>中文字Chinese charactors 1234</title>
this is the xslt:
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
1answer
117 views
Python encoding problems in xml
I have a media player that I would like to send what I'm playing to trakt.tv, everything works fine except for foreign letters in the title/path. The system is running python 2.7.3
def ...
1
vote
1answer
133 views
UTF-8 to UTF16 Parsing
I have an XML that is UTF-8 and have some special characters in Chinese, I need to parse this xml.
DocumentBuilderFactory factory = DocumentBuilderFactory
.newInstance();
...
0
votes
0answers
44 views
XML file to UTF-8 no result
Why isn't the following code doing converting to UTF-8
var doc = new XmlDocument();
doc.Load(FileName);
XmlWriterSettings settings = new XmlWriterSettings { Encoding = Encoding.UTF8, Indent=true };
...
0
votes
1answer
75 views
Parsing xml stored in string
I have an string encoded in xml format. So when I print it to console it will come out looking like an xml file. What I want to do is read values from this string now using java with DOM or SAX ...
1
vote
2answers
290 views
How to change encoding in TextWriter object?
I have xml which I send by API in another resurse. I create it by XDocument:
XDocument xDoc = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XElement("Entity",new ...
0
votes
1answer
91 views
How to remove broken characters present in ISO encoded XML file
when I tried to convert xml file with encoding of UTF-16 to ISO-8859-1, I am seeing broken characters like Â. Can you please suggest some solution to remove the broken characters and finally I want ...
0
votes
1answer
169 views
Can't load UTF-8 formatted text from XML file into Textbox (C#)
I have an XML file that is encoded as UTF-8:
<?xml version="1.0" encoding="UTF-8"?>
There is one node that has Unicode embedded - to preserve French (and other) characters.
...
0
votes
0answers
132 views
parse xml-file with utf-8 codes correctly?
i am coding an android game with libgdx.
(you will find it in google play market under: de.philweb.bubblr (sorry can only post 2 links))
i have now different languages with special characters and it ...
1
vote
2answers
181 views
xml utf-8 encoding error in java
The code looks like this:
XMLOutputFactory outputFactory = XMLOutputFactory.newInstance();
XMLEventWriter eventWriter = outputFactory
.createXMLEventWriter(new ...
1
vote
3answers
200 views
Unknowns UTF-8 code units closing double quotes
My problem is as follows. I am reading in an XML-file whose text nodes partially contain the UTF-8 version of opening and closing double quotes. The text is extracted, shortened to 3999 bytes and put ...
0
votes
2answers
350 views
Opening an XML file and converting this to UTF-8
I'm trying to open a xml file (ansi) and converting and saving it UTF-8.
Here is my code:
using System;
using System.IO;
using System.Text;
using System.Xml;
class Test
{
public static void ...
0
votes
2answers
45 views
How to read this or what type of encode is used to create this message?
I receive message from the server and it looks as this:
<?xml version="1.0" encoding="UTF-8"?>
<response>
<meta>
<code>0</code>
<message>ÐÑибка ...
0
votes
0answers
50 views
Chinese Encoding errors in XML or JSON
I am using the XML to create a xspf playlist (http://hornschorus.org/playlist.xspf)
When I use the xspf validator (http://validator.xspf.org/ ) to check the xspf, it said valid.
But the result ...
1
vote
1answer
142 views
PHP - Parse UTF-8 XML
I have trouble parse XML (from YouTube) using simple_xml, that have next symbols inside of text node:
↓ ‘ ’
These symbols was typed in MacOS Safari browser and was saved as video annotations.
XML ...
1
vote
1answer
208 views
lxml encoding error when parsing utf8 xml
I'm trying to iterate through an XML file (UTF-8 encoded, starts with ) with lxml, but get the following error on the character 丂 :
UnicodeEncodeError: 'cp932' codec can't encode character u'\u4e02' ...
1
vote
1answer
34 views
Error opening XML file in PHP with UTF-8
In my page, I try to open some xml files:
$xml = simplexml_load_file("users/" .$f->name."/data.xml");
The problem is that $f->name can include characters as vowels with accents, and because ...
2
votes
1answer
68 views
ANT seems to be corrupting chinese character when deploying project
I have an XSL file which contains the following text:
<xsl:variable name="orderName" select="'电子客票'"/>
At the top of the file the encoding is set to UTF-8
<?xml version="1.0" ...
0
votes
1answer
255 views
How can I get XSLT to return UTF-8 in Java
I'm trying to get my XSL script to work with UTF-8 encoding. Characters like åäö and greek characters just turn up like garbage. The only way to get it to work is if I write the result to a file. If I ...
1
vote
2answers
101 views
PHP encoding problems
After a webhook (XML) trigger, I have a PHP code doing the following treatment:
$xmlData = fopen('php://input' , 'rb');
while (!feof($xmlData)) { $xmlString .= fread($xmlData, 4096); }
...
1
vote
1answer
152 views
How to send UTF-8 coded XML without receiving umlauts in entity notation
I'm sending data to a business partner. The demand of the partner is clear: UTF-8 signed XML. Furthermore they want to receive german umlauts not being in entity notation.
This german site tells ...
0
votes
1answer
241 views
convert string in to encoded xml document
I am working with vb.net and have this long string which contains an xml document. ie. the content of the string is xml.
Is it possible to encode this string as valid utf-8 encoded xml document? How ...
1
vote
2answers
101 views
Java, Unknown charachters ン □ Xml response
i am currently trying to extract from an Xml file (that is accessible via this address : http://mobilite.euroairport.com/services/getDepartureAirports?language=French) a list of airports.
My problem ...
0
votes
1answer
424 views
Can we change XML encoding from utf-8 to utf -16?
I have written a code for generating XML with UTF-8 encoding.I always validate the XML with XSD file. In the same code i need UTF-16 encoding. Because one of my XSD file is of UTF-16 encoding.
But in ...
1
vote
1answer
190 views
Perl cgi and XML::Code double encoding issue
I am using XML::Code to create some XML Data from a GET parameter received through the CGI module. The webserver is Apache with charset set to UTF-8 and the submitting form is on a page with a
...
0
votes
1answer
228 views
Incorrect encoding in xml element using dom4j with Spring MVC
I've created an AbstractView in order to output some XML to the browser, as follows:
public abstract class AbstractXmlView extends AbstractView {
public AbstractXmlView() {
...
0
votes
2answers
59 views
XMLParser encoding problems
public XMLParser(InputStream is) {
try {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db;
db = dbf.newDocumentBuilder();
...
0
votes
1answer
143 views
Malformed Arabic in HttpResponse [duplicate]
Possible Duplicate:
Parsing an UTF-8 Encodded XML file
I am parsing a UTF-8 Encoded XML file which contains some arabic characters everything else is working properly except that the arabic ...
0
votes
1answer
84 views
XML and accented charachters
I'm extracting data from this website. I do use UTF-8 for my xml, the same charset for the website so I don't really understand why data arent encoded correctly.
For example, from this page I'm ...
1
vote
1answer
405 views
new UTF8Encoding(false) still writing utf8 BOM
I am turning the BOM off in my code and it is still printing it in my xml document. I do not understand. I have looked into many sources and still nothing and should just start with
my code does ...
0
votes
1answer
2k views
XML Invalid byte 1 of 1-byte UTF-8 sequence
I have a program that takes two xml files and merge into one, while I'm doing this, I managed to convert from "and " to "and ’". Not talking about why I'm doing this, here's the code snippet, ...


