0
votes
0answers
12 views
Adding identation to XML breaks signature
I tried to create XML signature as described in this article, but when I tried to add some identation when outputting resulting XML with this code:
...
1
vote
1answer
14 views
NodeList not populating
I am currently working on a program that takes the value of the 'data type' selected from a combo box (via .getSelectedIndex()) and then drills down toe the 'first record' and returns it as a String ...
-1
votes
2answers
38 views
Java convert a string to “ISO-8859-15” encoding? [on hold]
This String must be XML compatible, that is for example a < character is converted to 
0
votes
2answers
25 views
Adding Custom META tag to XML file
I created a java application that generates a whole bunch of simple XML files using the DocumentBuilder class. But now I need to go back and modify it so that all of the XML files also include this ...
0
votes
1answer
18 views
Can I find an example of Java XML configuration without XSD schema or XPATH?
I need to create an XML configuration file as simple as possible. As I understand using jaxb requires creating a schema file. Using XPathAPI does not allow direct conversion XML to a Java bean – one ...
0
votes
3answers
30 views
Count XML Elements, which are saved as a String
how is it possible with java, to count the number of PolylinePoint elements in this xml snippet (important for you is the fact, that this xml is not a file but a string):
...
-1
votes
0answers
15 views
Eclipse XML formatter form command line [on hold]
First of all if anyone looking for eclipse java formatting form command line its describe here: http://www.peterfriese.de/formatting-your-code-using-the-eclipse-code-formatter/
My problem is that I ...
-2
votes
2answers
51 views
How to Convert XML to Object in Android [on hold]
I have a XML String and I want convert it to Object classes and get data in fields.
My XML String :
<xml><PlayerGroupSchedules>
<PlayerGroupSchedule PlayerGroupScheduleID="1000210" ...
-2
votes
1answer
42 views
System LED notification similar to whats app [on hold]
I would like to create a management system of the LED notification like that found on whats app .... you have any idea how can I do? you could kindly post examples and detailed explanations on how to ...
-1
votes
0answers
10 views
XMLUnit Test case not validating for Regex
I want to ignore an element based on the value of an attribute. The following code works fine for all elements except one.
The two XMl parts are
part1 : <FulfilmentData Name='Order' ...
0
votes
0answers
16 views
How to create a typical XML Header with XML Beans in Java?
i would like to create a specific xml document with XML Beans. So i have been reached an acceptable result like this one:
<Req accessId="1234" ver="1.1">
<Loc id="007" maxNr="5">
...
1
vote
3answers
36 views
How do I find all xml elements of a specific type using xpath?
I have an XSD that defines a complexType (say 'FooType'), and several named instances of this type scattered throughout the same XSD, like:
<sequence>
<element name="A" ...
0
votes
1answer
23 views
Title where CheckBox Preference is Check or not
I have a settings menu where I have a CheckBox Preference. I wish that when the CheckBox is checked, displays an android: Title and when it is it shows another.
This is what I've done so far
...
0
votes
0answers
15 views
Android - TabBar not inheriting ActionBar height
The issue is that I have set a height for the action bar using android:actionBarSize= in my styles and it is effecting my menu and actionbar but is not effecting the tab bar. Any help would be ...
-1
votes
0answers
25 views
How to lock the home button on Android devices that upper than version - ice cream sandwich?
I tried the method 'onAttachedToWindow()' with 'WindowManager.LayoutParams.TYPE_KEYGUARD'.
And I also used the permission named "android.permission.DISABLE_KEYGUARD".
But, It just wakes an error - ...