Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<?xml version="1.0"?> 
<smooks-resource-list xmlns="http://www.milyn.org/xsd/smooks-1.1.xsd" 
xmlns:ftl="http://www.milyn.org/xsd/smooks/freemarker-1.1.xsd" 
xmlns:db="http://www.milyn.org/xsd/smooks/db-routing-1.1.xsd" 
xmlns:jb="http://www.milyn.org/xsd/smooks/javabean-1.2.xsd" 
xmlns:ds="http://www.milyn.org/xsd/smooks/datasource-1.1.xsd"> 

<ds:direct bindOnElement="#document" datasource="DB" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/dbase" username="root" password="praya123"   autoCommit="false" /> 
<db:executor executeOnElement="Invoice" datasource="DB" executeBefore="true"> 
<db:statement>SELECT * FROM custinfo</db:statement> 
<db:resultSet name="rs_custinfo" /> 
</db:executor> 
<db:executor executeOnElement="Invoice" datasource="DB" executeBefore="true"> 
<db:statement>select * from callRates</db:statement> 
<db:resultSet name="rs_callRates" /> 
</db:executor> 
<db:executor executeOnElement="Invoice" datasource="DB" executeBefore="true"> 
<db:statement>select * from InvoiceSummary</db:statement> 
<db:resultSet name="rs_InvoiceSummary" /> 
</db:executor> 
<db:executor executeOnElement="Invoice" datasource="DB" executeBefore="true"> 
<db:statement>select * from InvoiceDetail</db:statement> 
<db:resultSet name="rs_InvoiceDetail" /> 
</db:executor> 

<ftl:freemarker applyOnElement="Invoice"> 
<ftl:template> 

<!-- 
<#assign x=1> 
<#list 1..x as i> 

<DETAIL> 
<DT_INV_HDR1>${rs_custinfo[i].BillingAccNo}</DT_INV_HDR1> 
<DT_INV_HDR2>${rs_custinfo[i].CustNo}</DT_INV_HDR2> 
<DT_INV_HDR3>${rs_custinfo[i].InvoiceNo}</DT_INV_HDR3> 
<DT_INV_HDR4>${rs_custinfo[i].InvoiceDate}</DT_INV_HDR4> 
<DT_INV_HDR5>${rs_custinfo[i].PaymentDueDate}</DT_INV_HDR5> 
<DT_INV_HDR6/> 
<DT_INV_HDR7/> 
</DETAIL> 

</#list> 
--> 

</ftl:template> 
</ftl:freemarker> 
</smooks-resource-list>

how to fetch data with java ? Can anyone give any specific way to do that ?

share|improve this question
6  
Learn XML parsing in java. Search for DOM and SAX parser. – Harry Joy Sep 6 '11 at 12:43
I have tried with both of them. But I failed. Can you tell me any specific function of DOM or SAX, that i can use...? – Xxxxxxxxx Sep 6 '11 at 12:47
1  
Have you tried anything yourself? Have you got an SSCCE for us? – Wivani Sep 6 '11 at 12:49
I used SAX parser. I could parse all informations. But i need to parse only the data – Xxxxxxxxx Sep 6 '11 at 12:53
1  
This is nothing more than a code dump and is no better than your closed question, except for removing the sensative data. Please show us what you've tried, and what's not working. Else hire someone who knows what they're doing. – Hovercraft Full Of Eels Sep 6 '11 at 13:05
show 1 more comment

closed as not a real question by Hovercraft Full Of Eels, Jeff Mercado, Robert Harvey Sep 12 '11 at 20:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 0 down vote accepted

DZone has a very good, comprehensive refacrd on this you should read.

share|improve this answer
Thanks man. Actually the reference book of this document helped me. I used the DOM parser here. – Xxxxxxxxx Sep 7 '11 at 7:14

Look here: http://www.mkyong.com/java/how-to-read-xml-file-in-java-dom-parser/

Edit: You'll find a class to parse XML, it may be useful.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.