Search:

Type: Posts; User: jnthakar

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    2,251

    Re: Class to run in future!

    You can use Timer API to schedule your task on time provided by the user.Timer (Java 2 Platform SE v1.4.2)
  2. Replies
    7
    Views
    3,392

    Re: How do you use class.forname?

    I tried this way and it is running.I hope it may help you.


    public class Main {

    Main() {
    try {
    Class c = Class.forName("testing.Dfile");
    ...
  3. Replies
    7
    Views
    5,367

    Re: sorting name using Selectionsort

    See the modified code.It will work



    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Vector;

    public class selectSort{
  4. Replies
    5
    Views
    3,762

    Re: How to fetch integer data from excel

    Hi use POI API. That is very good API for excel sheet Readign/Writing. I have used it so many time in the past.
  5. Replies
    3
    Views
    1,817

    Re: Urgent!!!!!!!!!!!!!!!!

    Basically Class.forName("com.mysql.jdbc.Driver") will try to find the class mentioned as a string and load it into memory.
    So you need to download mysql-connector-java-5.1.6-bin.jar and add into...
  6. Re: Using Regular Expression (regex) in Java Programming

    will it work for the string
    Why John smith and Alan Smith and Nick gates are the same?
  7. Thread: println class

    by jnthakar
    Replies
    9
    Views
    1,875

    Re: println class

    Not possible directly.
    But any way if that class is providing all its code as string through toString method then you can print.
Results 1 to 7 of 7