The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > General Programming > Java


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Reply
 
LinkBack Thread Tools    Display Modes   
  #1 (permalink)  
Old 09-04-2007, 06:05 PM
nogono nogono is offline
Novice
Join Date: Jul 2007
Posts: 35
iTrader: (0)
nogono is on a distinguished road
Icon11 Java Error

Below is my program....i am able to input the array...but i am unable to display it.......In second file...i made comment...where i think is th error..

Main file:


public
class add implements name {

input
vl;

public add()
{

vl=new input();

}







publicvoid display(int dis)
{
System.
out.println("Displaying");

System.
out.println(dis);
}

publicstaticvoid main(String[] args)
{
new add();
}

}

Second File:

import
java.io.*;


public
class input {

int[] num=newint[10];
name
mas;

public input()
{
int nu12=0;

for(int i=0;i<num.length;i++)
{

System.
out.println("Numbers Entered [ " + i + " ] = ");

BufferedReader in=
new BufferedReader(new InputStreamReader(System.in));

try {
nu12=(Integer.parseInt(in.readLine()));
System.
out.println("Passing thru array");
mas.display(nu12);//This line is not executing why so...

}
catch (NumberFormatException e) {} catch (IOException e) {} catch(NullPointerException e){}

}

}




}


Interface file:

public
interface name {

void display(int dis);

}


__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #2 (permalink)  
Old 09-04-2007, 09:50 PM
HelloWorld's Avatar
HelloWorld HelloWorld is offline
Programming Expert
Awards Showcase
Quality Tutorial 
Total Awards: 1
Join Date: Jun 2007
Location: In front of computer...
Posts: 1,111
iTrader: (0)
HelloWorld will become famous soon enoughHelloWorld will become famous soon enoughHelloWorld will become famous soon enough
How do you want to read the input from the user? Is it from the command line? From a file or what? If it's a command line input, I'd suggest you to just use Scanner class... It's the same thing, but it's make your code looks nicer lol...

and then use this method:

Quote:
String nextLine()
Advances this scanner past the current line and returns the input that was skipped.
Code:
import java.util.Scanner;

public class Test {
  public static void main(String[] args) {
    Scanner s = new Scanner();
    int[] num = new int[10];
    int cnt = 0;
    while (cnt < num.length) {
      System.out.print("Enter number: ");
      String number = s.nextLine();
      int[cnt] = Integer.parseInt(number); // you need to add try.. catch.. block
      System.out.println(int[cnt]);
    }
  }
}
let me know if it works lol.. I didn't test it

__________________
PHP Code:
System.out.println("Hello World!"); 

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by HelloWorld : 09-04-2007 at 09:56 PM.
Reply With Quote
The Following User Says Thank You to HelloWorld For This Useful Post:
TeraTask (09-05-2007)
Reply


Thread Tools
Display Modes

   Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 07:47 PM. Powered by vBulletin
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO © 2007 ProgrammersTalk Sedo - Buy and Sell Domain Names and Websites project info: programmerstalk.net Statistics for project programmerstalk.net etracker® web controlling instead of log file analysis


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50