Search:

Type: Posts; User: arnavkumartechno

Search: Search took 0.07 seconds.

  1. Replies
    9
    Views
    1,440

    Re: How to reverse a string array ?

    What you are doing is going with a wrong for loop initialization. It will be like this:


    public class FriendList {

    public static void main (String[] args) {

    String [] friends =...
  2. Replies
    8
    Views
    1,404

    Re: Why is this in an infinite loop?

    It is not the complete program.
  3. Replies
    3
    Views
    2,009

    Division by zero exception

    I am learning java. And have some doubts to be sorted out. I want to know that if a number is divided by 0 than it throw ArithematicException. And if i take any string from user as input and stored...
  4. Replies
    4
    Views
    8,200

    Re: MS ACCESS + JAVA

    You can not create setup.exe in java. Executable jar can be created in java. And if everything is fine with your application then why are you using type 1 driver for DB. It is slowest and now there...
  5. Replies
    2
    Views
    1,550

    Re: Java and mysql

    If your data is being submitted successfully then what is the problem. Use correct queries to retrieve the data but the main thing is that using System.out.print() method with QWT/Swing is worthless....
  6. Replies
    12
    Views
    2,419

    Re: Calling up array methods from main

    Thank you norm, i am new with the forums. Thank you i will take care of it in future.
  7. Replies
    12
    Views
    2,419

    Re: Calling up array methods from main

    Re: Calling up array methods from main
    Try this with some of your own effort...


    public static void main(String[] args) {
    int rndInt = randomInt(int low, int high);
    int arr[]= randomIntArray...
  8. Re: Which one the best method use for Search..?

    Re: Which one the best method use for Search..?

    Searching is an important function in computer science. As the data sets become larger and larger, good search algorithms will become more...
  9. Re: Multivaluemap with keyset iterator returning in order

    Re: Multivaluemap with keyset iterator returning in order

    you can use list of objects against the key for value in map.
    List<YourDesiredClass> YourDesiredClassList = new...
  10. Replies
    3
    Views
    1,492

    Re: Design Patterns

    Re: Design Patterns
    I completely agree with Rodiongork and you can learn SRP principle, DRY principle, DAO design pattern which will increase your performance during programing.
  11. Replies
    3
    Views
    1,982

    Re: Looper

    No problem is here with the code. This code should be compiled and run perfactly...!!!!!!!
Results 1 to 11 of 11