Are there any tools available in java to create reports?
Answers were Sorted based on User's Feedback
Answer / sujanyat
useing the jasper reports in java we can genarate the
reports
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shweta sharma
These are following reports which are supported by java:-
Elixir Report
JasperReports
Crystal-Clear
JReport
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / ravikiran(aptech mumbai)
jasper reports threw i-report tool
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ravindra more(ltpl)
there is jsper reports
we can use i-report toll which is external from java and by
using it we can create template and create pdf reports
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / jigar
I Report is best for Jasper since it creates dynamic width
and height of the table depending on the no. of columns
| Is This Answer Correct ? | 2 Yes | 1 No |
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
Write a java program to count the number of words present in a string?
Explain the difference between throw and throws in java?
what is meant by serialization?
Can we declare a constructor as final?
What is the difference between this() and super()?
Can a static block throw exception?
Can you call a method in a method?
We can write any Java Logics in our JSP. Then why we are using servlets(Controller Layer) to interact with the DAO ?
Is hashset ordered?
What is the difference between C++ and Java and your preferences?
Can we override singleton class?