Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
355 views

Java: Commons-Collections generics: How to get custom transformer to work

Hi i am using commons collections generics 4.01. I have a dto object. Class PricingDto { private Double tax; private Double price; private Double tip; // getters and setters } i ...
3
votes
3answers
534 views

How to prevent xml transformer to transform empty tags into single tag

I'm using javax.xml.transform.Transformer class to transform the DOM source into XML string. I have some empty elements in DOM tree, and these become one tag which I don't want. How do I prevent ...
2
votes
2answers
884 views

gcc ON arm/android

I just got a EEE pad transformer. Like any hardware I own I'd like to have a C compiler on it. I know I can cross compile, but I'd like to do development ON the device itself. I've searched google ...
2
votes
1answer
248 views

Indent XML made with Transformer

I am trying to create XML from Java and am having problems with indenting. In the following code you can see OutputKeys.INDENT set to yes... //set up a transformer TransformerFactory ...
2
votes
1answer
124 views

java standard lib produce wrong xml 1.1

I found this interesting problem last week. Run the program below. It's very simple, first create a dummy xml file, and read it with standard lib and write it back to a file. Look through the ...
2
votes
1answer
200 views

java errorlistener use on a transformer instance(jaxp)

The signature for method transform of Transformer is void transform(Source xmlSource,Result outputTarget)throws TransformerException i.e. specifies that it throws a checked exception of type ...
2
votes
1answer
402 views

How can you use sort descriptors and predicates with core data transformable fields?

I have an application which I wrote which used to work perfectly fine. There is new requirement that all data needs to be encrypted now, so I implemented encryption by making all my core data fields ...
2
votes
5answers
2k views

java append to file

I googled for this for a while but can't seem to find it and it should be easy. I want to append a CR to then end of an XML file that I am creating with a Transformer. Is there a way to do this> I ...
1
vote
0answers
22 views

HornetQ: Divert + Transformer class usage

I was looking forward to using a divert on HornetQ to divert messages on a given address to many other addresses. What I would like to do is add some additional properties on the message ONCE it gets ...
1
vote
0answers
266 views

Remapping the Asus Transformer keyboard. How to insert acute accent?

I am trying to change the keyboard dock layout to that of Icelandic standard keyboard using this guide : xda developers, however im having difficulties finding the acute accent ยด that is used to type ...
1
vote
2answers
344 views

Is it possible to get the Android ADK working on an ASUS Eee Pad Transformer running 3.1?

I am running the ADK demo app tweaked for Android 3.1, using the ASUS Eee Pad Transformer tablet and an ADK board, built as described in Get Started With Android ADK (LINUX). I seem to be having the ...
1
vote
1answer
661 views

What is the Video Format for Asus Transformer?

I have an Asus Transformer and would like to put a lot of movies in it. However, it seems like it's very hard to find the proper format for it. I've tried to convert the movies both in AVI and MP4 ...
0
votes
1answer
24 views

Android can't get result from standard camera intent

I'm trying to use the standard camera of the ASUS Transformer EE Tablet. I can open the camera and take a picture. But I'm not able to accept the taken picture. I can cancel or take a new picture. But ...
0
votes
1answer
28 views

Use Asus Transformer Prime as USB Debugger

I am thinking about buying the Asus Transformer Prime, to start developing on android. Currently I am borrowing a Motorola Xoom to develop, and that has a Micro USB port, that I can plug into, and use ...
0
votes
1answer
48 views

prevent java transformer from replacing

I have this XML file <test>&#13; &#xD; &lt;</test> and i am tranforming it with the java code below, the xslt file just makes a copy of the xml public class XMLTransform { ...
0
votes
0answers
39 views

Does TransformerFactory in Android use SAX or DOM parser?

does the transformerfactory in Android use the SAX or DOM APIs. it belongs to the javax.xml.transform.TransformerFactory but can not find any indication what the parser is. Just wanted to get an ...
0
votes
0answers
94 views

Java Transformer, TransformerFactory messes up multiline xml comments

I'm having a bit of trouble using Transformer/TransformerFactory to update an existing XML file (on a Wowza server). It works great and updates correctly, but it makes a mess of multiline comments. ...
0
votes
0answers
68 views

Asus Eeepad Transformer Development Reference/Documentation?

I'm looking for a development-reference/documentation for the Asus Eeepad Transformer. Does anyone know where I could find it? (The TF101 has some extras built in to work with the dock, for example: ...
0
votes
1answer
55 views

How to suppress the xml element added by Transformer of javax.xml.transform.Transformer

I've been using the Java APIs to parse an XML file so I could add, remove, or update elements/attributes. Everything works the way I want, except that the Transformer object I'm using adds <?xml ...
0
votes
1answer
29 views

How to unit test on Customer Transformer implementation of Solr

How can I do unit test on Customer Transformer implementation of Solr ? Thanks
0
votes
1answer
334 views

Java 1.6: javax.xml.transform.Transformer refuses to indent xml strings which contain newlines

I need to be able to pretty print xml strings using Java APIs and have found multiple solutions for this both on the web and on this particular website. However despite multiple attempts to get this ...
0
votes
2answers
254 views

QCAR on ASUS Transformer (eee Pad)

I'm starting to develop an AR applcation and my development device is the one in the subject. This target runs Android 3.1. i covered all the steps needed to setup my environment and tried to run the ...
0
votes
1answer
58 views

Formatting Generated XML in Java

I have a generated xml using the Transformer to do the actual writing (to a StreamResult). I am trying to have it nicely generated that is more human-readable. I have inserted the code below and it ...
0
votes
3answers
670 views

ADK or microbridge on ASUS Eee Pad Transformer

How can the Android Open Accessory Development Kit (ADK) or the microbridge project be made to work with the ASUS Eee Pad Transformer? I can compile and install apps on the Transformer which uses ...
0
votes
1answer
81 views

Android Create XML on 3.1

I am getting this error using SDK 12. Caused by: org.apache.xml.serializer.utils.WrappedRuntimeException: Could not load the propery file 'output_xml.properties' for output method 'xml' (check ...
0
votes
1answer
546 views

Premature end of file Error

I am using XSL to configure my XML file into a smaller XML. My code fragments are so: public class MessageTransformer { public static void main(String[] args) { try { TransformerFactory ...
0
votes
1answer
131 views

Providing parameters to XSLT program using Java API

What I want to do is: setParameter(String name, String value) But the API is: void setParameter(QName name, XdmValue value) I can't find any example to properly create XdmValue and QName, ...
0
votes
2answers
199 views

NekoHTML: how to write contents of Document Object to String

I am using NekoHTML to parse contents of some HTML file.. Everything goes Ok except for extracting the contents of the Document Object to some string.. I've tried uses TransformerFactory ...
0
votes
1answer
586 views

Java xml Transformer to escape &

I am having a problem with javax.xml.transform.Transformer. I am trying to create a XML document and one of the attributes is HTTP link which contains & for query. After I've invoked the ...
0
votes
1answer
867 views

Saxon 9.2 / Java / XSLT: setting transformer parameters using setParameters()

I have the following XSLT 2.0 template: <xsl:template name="t1"> <xsl:variable name="totalpos" as="xsd:double" select="$currentTotal"/> .. I am struggling to programmatticaly provide ...
0
votes
1answer
731 views

How to force javax xslt transformer to encode national characters using utf-8 and not html entities?

I'm working on filter that should transform an output with some stylesheet. Important sections of code looks like this: PrintWriter out = response.getWriter(); ... StringReader sr = new ...
0
votes
4answers
1k views

How Do You Prevent A javax Transformer From Escaping Whitespace?

I'm using the javax.xml.transform.Transformer class to perform some XSLT translations, like so: TransformerFactory factory = TransformerFactory.newInstance(); StreamSource source = new ...
-1
votes
2answers
452 views

GZip HttpResponse using XSL Transformer - Java

I have the following code below in my Servlet, but when IE hits the page, it returns a blank html page. If I use the response.getOutputStream() directly in the StreamResult constructor, the page ...