Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for RichardCrickets

Hey Daniweb. I need to design a sort of community calendar system. The idea seems so simple that I’m thinking it must have been done already. I have no real preference to language. The purpose of the calendar would be for a music venue so that they can have acts …

Member Avatar for peter_budo
0
70
Member Avatar for RichardCrickets

So I have my documentbuilder and I'm doing this the DOM way. I've managed to get to the point where I have saved the tag I want into a nodelist NodeList list = doc.getElementsByTagName("myTag"); the xml looks like this <myTag id="1"/> but now I want to grab the id number …

Member Avatar for moutanna
0
93
Member Avatar for RichardCrickets

Hello, I am trying to create a collection that will store boolean relationships between a list of numbers. Normally I would create a 2d array but these numbers will always be dynamically changing. Sometimes there will be more numbers and sometimes less. What collection type can I use to store …

Member Avatar for gusano79
0
74
Member Avatar for RichardCrickets

Hello DaniWeb. Here is my problem. I have an XML file that is arranged like this.. <document> <Word>apple</Word> <Word>hat</Word> <Word>car</Word> </document> I'm trying to figure out how to grab the actual words. This is how I'm doing it now. [Code] DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); Document doc = builder.parse(new File("data/general/words.xml")); NodeList …

Member Avatar for RichardCrickets
0
101
Member Avatar for RichardCrickets

Hello Daniweb, I have a list of words seperated by line breaks in a .txt file. It looks like this. driving drop dry dust ear early earth east edge education I need to figure out the easiest way to convert it to a simple XML file that looks like this: …

Member Avatar for xml_looser
0
113
Member Avatar for RichardCrickets

Hello daniweb, I am new to java and am trying to wrap my head around parsing XML with Java. I've decided to try DOM with Xerces to start because it seems pretty simple, however I am getting NoClassDefFound errors. I'm sure it's something really simple that I have overlooked due …

Member Avatar for Ezzaral
0
1K
Member Avatar for RichardCrickets

Hello daniweb, I am new to Java and to this forum! I am trying to put some objects into an array like this.. [code] MovingPlatform[] platforms; platforms = new MovingPlatform[1]; [/code] The problem is that I want to be able to access variables of objects within my array. I have …

Member Avatar for RichardCrickets
0
101