Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: munnanext
  • Content: Threads
  • Order by date
  1. munnanext

    looping inside child nodes instead of xsl:for-each

    Hi Everyone, I am generating a pdf document from the xml. The xml is dynamically generated and i am using this xml tree to generate pdf documents using xslt and xpath. Here is my xml document. <Details> <Date>Today's Date</Date> <YearlyAmount> <DATES> <DATE ID="03-JUN"...
  2. munnanext

    Date Function to get System Date using XSLT

    Hi Everyone, I have an xml file. and i need to generate the html page out of it. I am using XSLT to achieve this. But When ever the page is rendered the user should get the current date. Can any one please explain how Can i achieve this using XSLT. Thanks in Advance
  3. munnanext

    need to refresh a lot to see the generated pdf document

    Hi Everyone, I am generating a pdf document from xml using XSL-FO. When i execute my code, i am able to get the output, but i need to click on the refresh button many times. I don't understand why this is happening. Can any one Pl explain me what might be the problem Thanks in Advance.
  4. munnanext

    Question reg XSL-FO

    Hi Everyone, I am new to XML, XSLT and XSL-FO and i am learning it. I need to generate a pdf document for an xml. I have written xsl file for my xml document, and i have used<fo:table> tags in my xsl file. When i am executing the code through java, i am able to generate the pdf document...
  5. munnanext

    Converting xml file to String

    Hi Everyone, I have an xml file in the file system. From Java code, if i want to print this xml file to get the contents of it in the console, How can i achieve this. Can any one pl explain how can i get the String output of xml file Thanks in Advance
  6. munnanext

    using xsl:for-each tag in xsl file

    Hi Everyone, I am new to XML and XSLT and I am learing them. If for a particular column we have sub rows then how can we get to show them in an html page For example, consider these four columns.. name age gender children in my xml i have tags as <Family> <name>Suresh</name> <age>30</age>...
  7. munnanext

    JAVA Source file name and Public Modifier

    I read that Java Source Fiel can have any number of classes and the Surce File name shoul be having a match to at least one Publci Class in the Source. For Eg: my Java Source file name is Example.java. here is the source class Example{} class SomeotherClass{} When I compile this it is not...
  8. munnanext

    public in main method

    Hi i am writing a mock exam, and the output they are saying is not the same when i am compiling the program. The program is as follows: class XTC { static void main ( String [ ] args ) { // ---line 1 int x = true ? 10 : 20 ; // ---> line 2 System . out . println ( x ) ; // ---line 3 }...
  9. munnanext

    While

    I have a question when I have a program like below claa MyHelloWorld{ public static void main(String args[]){ While(false){ System.out.println("This is in False statement);} } } When I execute the above Program it is giving the Compilation Error Unreachable statement. but when I slightly...
  10. munnanext

    &quot;this&quot; and with out &quot;this&quot; Keyword

    package p2; public class Test1 { boolean temp; int i; /** Creates a new instance of Test1 */ public Test1(int i) { System.out.println(i); this.i = i; } public static void main(String args[]){ Test1 objTest1 = new Test1(5)...
  11. munnanext

    JAVA Certification

    Can anybody tell me whether The Certification Exam Sun Certified Programmer for JAVA2 Platform 1.4 (310-035) having AWT and Events for the Exam ? Thanks
  12. munnanext

    Bitwise LeftShift and RightShift

    I am learning Bitwise Shift operators, and my question is (Pl see below commented lines in the Program) Thanks public class Bitwise { int i =1; int j = 1; public static void main(String args[]) { Bitwise obj = new Bitwise(); Bitwise obj1 = new Bitwise()...
  13. munnanext

    ArrayList

    I am learning ArrayList. The following program is very well Working. But my question is that in Line20 below why can't I access the variable i ? like below System.out.println(myObjectArray.i); Since i is having Default access and which we suppose to be able to access in the Objects. Thanks for...
  14. munnanext

    EvenLog Reading from VB

    Hi, I need to read EventLog from my VB application. Any help ? Thanks
  15. munnanext

    Garbage collection and Threads

    Hi, I am reading the following lines in some Book. This looks strange to me. Is this correct ? Can you pl explain me what is "Vendor Implemented" and why Java is not suitable for real time Programming ? Thanks The garbage collection algorithm in Java is vendor implemented Threading and garbage...
  16. munnanext

    Array Declaration

    Is this way of Declaring an array corect Int[] []x[];
  17. munnanext

    Length Of the Array

    I am of the opinion that arry elements are indexed from 1 to size of the array, But in some book it is given that array elements are indexed from 0 to (length of the array -1) Can you tell me which is the correct method? Appreciate your help
  18. munnanext

    getBoolean in Java.lang

    public class getBooleanDemo { public static void main(String args[]){ boolean b; String propertyName ="true"; b = Boolean.getBoolean(propertyName); System.out.println(b); } } Can you pl explain me what getBoolean does ? I am reading this in the...
  19. munnanext

    FileOutput Stream

    I am getting the following error while compiling the program variable fos1 might not have been initialized The code for the program is as follows: package MyInputOutput; import java.io.*; public class CreateFile { public static void main(String args[]) throws IOException{...
  20. munnanext

    CLASSPATH - Question

    I have two Java Files. one is HelloWorld.java and another is HelloWorldSource.java. I am having these files in c:\John\java\myPackage. The CLASSPATH I have is C:\john\java\myPackage>set CLASSPATH CLASSPATH=.;C:\POIRA\JAVA\CLASSES;C:\POIRA\JAVA\CLASSES\EXTAPI.JAR;C:\Program Fi...

Part and Inventory Search

Back
Top