Calling A Method That Throws Exception?

Aug 15, 2014

I have a file greenGrow.txt, and every three lines of the file has a last name, first name, and yard size. Every time a Customer object is created, I need to read the file 3 lines and assign the object a last name, first name, and yard size.

Snippet of my code:

import java.io.*;
import java.util.*;
public class Customer {
private String lastName;
private String firstName;
private int yardSize;

[Code] .....

My issue is that I cannot call readFile() from the constructor, and I'm assuming that's because I throw Exception on readFile(). Is this a simple fix, or am I looking at it the wrong way?

View Replies


ADVERTISEMENT

What Handling Exception And Declaring Same Exception In Throws Clause Achieve

Jan 24, 2014

I was giving a quick skim to some tutorials on the internet where I have found the exception that is handled is also declared in the throws clause of the method wrapping the try-catch block. For a code representation consider the following:

public void methodName() throws IOException {
try {
...
} catch (IOException ex) {
.... TODO handle exception
}

}

View Replies View Related

Null Point Exception Error While Calling A Method

Mar 19, 2015

I'm trying to call the grade.processFile method from the main method but I'm getting this Error below. I'll post my code which includes the main method and the class underneath the error message:

Exception in thread "main" java.lang.NullPointerException
at java.io.FileInputStream.<init>(FileInputStream.jav a:130)
at java.util.Scanner.<init>(Scanner.java:611)
at MyGrades.processFile(MyGrades.java:49)
at myGradesMain.main(myGradesMain.java:19) 
import java.util.Scanner;
import java.io.*;

[code]...

View Replies View Related

Java Array Throws Exception For Multiple Values

Jan 3, 2014

int nRows = 0;
        for (EITest testCurr : testList) {
            testCaseListArray[nRows] = new Object[3];
            String testName = testCurr.getTestName();
            LOG.info("testName=" + testName);
            testCaseListArray[nRows][0] = testName;

[Code] ....

This throws null pointer exception because of array initialization error. I tried this:
 
int nRows=0;
        for(EITest testCurr: testList){          
            testCaseListArray[nRows] = new Object[3];
            String testName = testCurr.getTestName();
            LOG.info("testName=" + testName);
            testCaseListArray[nRows][0] = testName;

[Code] ....

But this is not complete solution.
 
2) I want to make this as a collection object such as array list instead of Array declaration.

View Replies View Related

Calling A User Defined Exception?

Dec 3, 2014

I know that I am not 100% comprehending try/catch blocks, but after scouring message boards, forums, and Oracle, I still can't pick out where I am going wrong.

I have a ValidateInput class where I am trying to check that a String only has letters. If not, then throw an exception message via JOptionPane. I created my own NonLetterException class. When I call the method containing the try/catch Eclipse gives me an Unhandled Exception Type error.

in main()
ValidateInput validate = new ValidateInput();
String name = "error";
for(int x = 0; x < 1;){
name = JOptionPane.showInputDialog("Welcome. What is your name?");
boolean isItName = validate.stringInput(name); //error appears at validate.stringInput
if(isItName)

[code]....

Aren't I handling it in the try/catch? What did I miss?

Also, I have have tried the NonLetterException class as nested in ValidatedInput, but also not nested. To me nested makes more sense. I have never nested classes before, but it makes sense to me because I am not using this exception in other parts of my program.

View Replies View Related

Optionally Catch Exception If Not Going To Be Caught By Calling Routine?

Apr 10, 2014

I want to write classes with methods that perform JDBC operations that throw SQL exceptions. For many of the methods, I'd ideally like to be able to have them catch exceptions and just send them to a standard Logging system "IF" the code that calls the methods is not going to catch the same exception. However, I'd like the "option" to have code that calls these methods catch the same errors if I want to but not "Require" the calling routines to catch them.... so I don't want to declare the methods with a "throws" that would require all calling code to Try/catch.

For some background, the logic behind what I'm looking to do is that there will be lots of places where these classes and their methods may be used where the code is basically "throw away" scripting code where just having error logs generated is more than sufficient. However there are also places I want to use the same classes/methods that I would want to handle the exception differently. So, for at least half the places I want to use these methods, there's no good reason to require cluttering the calling code with Try/catch, but when I DO want to handle the exceptions, I'd like them to get passed up to the calling routine so I can handle them in a way that is appropriate for the calling routine. Does that make sense?

I guess I'm kind of looking for is the ability to "override" the catch of a called method "IF" I want to but to treat the method as though it doesn't throw any exception "IF" I don't want to override the called routines catch logic.

Is this possible?

View Replies View Related

NullPointer Exception From Calling A Setter In Array Of Objects

Sep 21, 2014

I hope I'm putting this question in the right folder. I have an array of objects, and I have defined a setter for a variable in the object. When I call the setter, I get a NullPointerException. Here is the relevant code for the object.

public class Digit extends Thread {
private int digit;
public void setDigit(int digit) {
this.digit = digit;
}
// run method follows
}

Here is the portion of the main class where I define an array and then call the setter.

Digit[] digits = new Digit[10];
for (int i = 0; i < digits.length; i++) {
digits[i].setDigit(i); // NullPointerException occurs here
}

View Replies View Related

Calling Private Method To Another Method Located In Same Class

Oct 23, 2014

I am trying to call a private method to another method that are located in the same class.

I am trying to call prepareString to the encode method below.

Java Code:

public class ShiftEncoderDecoder
private String prepareString(String plainText)
{
String preparedString = "";
for(int i = 0 ; i < plainText.length();i++)
if(Character.isAlphabetic(plainText.charAt(i)))

[Code] .....

View Replies View Related

Calling A Method From Main

Jan 26, 2014

The idea is to create a program to add plants and retrieve plants from a Nursery. I created a class with the properties of the plants and also there is the class an Array list to keep track of the plants entered ( they will have to be printed later) (I am not too sure if adding a public class there is the best option.

The program will allow the user to pick and action and from there the code will do something. I don't want to have all the code inside 'main' The problem is in line 114.This is what I have so far.

Java Code:

package plant.nursery;
import java.util.ArrayList;
import java.util.Scanner;
/**Class to create a plant for a nursery.
public class PlantNursery

[code]....

View Replies View Related

Calling A String To Another Method

Oct 23, 2014

I need to get the string encodedString from the method encode able to be used in the decode method.

Java Code:

public String encode(String plainText) {
int prepareString;
int shiftChar;
String preparedString2 = prepareString(plainText);
String encodedString = "";
for(int c = 0 ; c < preparedString2.length();c++)

[Code] ....

View Replies View Related

Calling A Method With Timeout

Aug 8, 2014

I have a line code like this one:

String result = someHeavyMethod();

and I need to add this logic: "if the method doesn't finish within 10 seconds, cancel it and let me continue with the rest of the program".

View Replies View Related

Calling Method Into Applet

Apr 8, 2014

I need to create an applet that displays a grid of command buttons which I have done. I then need to create a new class that draws a silly picture of an alien, which I have also done. Where I am completely stuck and confused, is that I do not know how to get the drawing into the applet. My code is below. I really do not fully understand why this is not working or how to get it working.

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class MartianGame extends JApplet implements ActionListener {
DrawMartian aMartian = new DrawMartian();
DrawJupiterian aJupiterian = new DrawJupiterian();

[Code] .....

View Replies View Related

Calling Method From Within A Class

Sep 15, 2014

I am calling a method from within a class like so:

xmlWriter.updateFile(environment, doc);

The class is xmlWriter & the method is updateFile

updateFile passes Environment environment (another class) and Document doc (document builder)

but I am unsure about it passing these through the parameters in the method call..is it correct?

Also underneath that method call for the update could I then do another method call for the export method of the file?

View Replies View Related

Calling A Method From Another Class

Mar 24, 2014

I am having problem to call a method from another class using arrays. I already know how to call a method without using arrays but I am not sure how to pass parameters to the main method using arrays. I'd really appreciate any feedback or comments!This is what I have so far.

public class Customer123 {
public static void main(String [] args){
Scanner input = new Scanner(System.in);
int x;
System.out.print("Total number of customers: ");
x = input.nextInt();

[code]....

View Replies View Related

Calling A Method To Main

Nov 17, 2014

I'm trying to call a method to my main method, but I can't seem to get it to work and it keeps resulting in a compile error.

import java.io.*;
import java.awt.Point;
import java.text.DecimalFormat;
import java.util.Random;
public class Chase {
public static void main(String args[]){

[Code] .....

View Replies View Related

Calling A Method To The Main

Sep 10, 2014

I have been reading about methods and I do have a beginner level understanding on how they work. I was trying to mess around and make a dog calculator using methods. I ran into a small snag; I cannot get the method to call to the main or the program to compile correctly. The first code below is the original. To me it looks like (based off of some examples I looked at) there should be no problems, but NetBeans gives me a few errors. 1) line 8- "cannot find symbol, variable dogYearCalc; 2) line 18 illegal start of expression; and 3) line 22 - unreachable statement.

import javax.swing.JOptionPane;
public class KrisExample {
public static void main (String[] args) {
double dogYears = 0;
JOptionPane.showInputDialog (null,"Please enter you dog's age in human years:");

[Code] ....

Someone told me that I was calling dogYearCalc without any arguments in your main method. I take that to mean that I needed to add it to the main, so I did here:

public static void main (String[] args, double dogYearCalc) {

That got rid of my first error, but then when I tried to run the program NetBeans said that I have no main class, so switched back to the original program above.

I thought that when I calling the dogYearCalc method on line 10 was the whole purpose of using a method. It seems to me that putting it somewhere in the main is counter productive.

View Replies View Related

Calling A Method From One Class To Another

Mar 6, 2015

calling a method from one class to another.I have two classes. One called Vacation and another called VacationDriver.I am trying to input an int for addVac and have the value update to the numSold within the updateSales() method in Vacation. From there it should update and display in the v1.toString in the VacationDriver.

Vacation
import java.text.NumberFormat;
public class Vacation {
private String vacationName;
private int numSold;
private double priceEach;

[code]...

View Replies View Related

Calling A Method On Object From Another Class?

Oct 27, 2014

I have a class for employees. This class has basic information for the employee but no real pay information. And 2 subclasses, one for employee's paid for hourly rates and one for those paid a yearly salary. Each subclass has their own pay() method, that calculates and returns their pay and extra fields relative to calculate that.

I'm just curious, if I do this and create an object for an hourly paid employee like so:

Object hourly1 = new HourlyEmployeeWilson("John Doe", "123 Tech Street",361961,"Human Resources", 0,12.50,50);

How can I utilize that classes public method of pay() to gather this instance (or hourly paid employee)'s pay? I've tried doing so via:

System.out.println(hourly1.pay());

But I get

DriverPayWilson.java:9: error: cannot find symbol
System.out.println(hourly1.pay());
^
symbol: method pay()
location: variable hourly1 of type Object
1 error

View Replies View Related

Recall Main Method After Calling Of JVM?

Jul 28, 2014

Can we recall the main method? I'm trying a code to recall main method (after the calling of JVM). I know this doesn't make any sense but I'm trying this just like that.

Code:

class derived {
public static void main(String args[]) {
System.out.println("Main Method class");
show();
}
static void show()

[code]....

View Replies View Related

JSP :: Calling Java Method Error

Apr 13, 2014

I have a JSP page that calls a Java method .. using GlassFish 4.0 it worked just fine, now I'm trying to run it on a new server with Tomcat 6.0 but it keeps giving me this error: "the function result must be used with a prefix when a default namespace is not specified"

Here's my JSP page:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
......
<jsp:useBean id="diskUtilData" scope="request" class="newpackage.ResultPage" />
.....
<c:forEach var="celldata" items="${diskUtilData.result()}">

[Code].....

View Replies View Related

Calling Method - While Loop Keeps Crashing

Mar 6, 2015

My program crashes every time I call this method because of the while loop. I guess its going into a infinite loop. The game should keep running until the user ends it. Is the use of my .isKeyPressed correct and if so what else could it be?

public static void run() {
while (true) {
if (StdDraw.isKeyPressed(KeyEvent.VK_Q)) {
break;

[Code] ...

View Replies View Related

Calling Method From DLL In Java Code

Mar 6, 2015

I need to access a method from a dll in java as below and is giving an error

"Exception in thread "main" java.lang.UnsatisfiedLinkError: Testdll.Decrypt(Ljava/lang/StringLjava/lang/String;
at Testdll.Decrypt(Native Method)
at Testdll.main(Testdll.java:31)
"
I have included the jna-4.0.0.jar and the HashMatchCryptography.dll to the project in eclipe and the java-library-path has the path for the lib

import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.NativeLong;
import com.sun.jna.Platform;
import com.sun.jna.*;
import java.lang.*;

[code]...

View Replies View Related

Calling Object To Main Method

Oct 26, 2014

When I try to call an object it can't find the symbol in the argument list. NetBeans says that it cannot find the movieCategory symbol when I try to call it. When I compile it to test a popup comes up that states "One or more projects were compiled with errors. Application you are running may end unexpectedly. I ran it anyways and everything runs up to the point of where it should call the object.

At this point it should get the Movie object and run the code within that, but if I put one of the categories it throws. "Exception in thread "main" java. lang.RuntimeException: Uncompilable source code - Erroneous tree type: <any>at MovieApp.main(MovieApp.java:33)Java Result: 1"

From my understanding to call an object it requires objectName.methodName(argumentList). Here is my Main method

/**
*This application will store a list of 100 movies and display them by category
*/
import java.util.Scanner;
public class MovieApp
{
public static void main(String args[])
{
//Displays <code>String</code> welcome message
System.out.println("Welcome to the Movie Application.");
System.out.println("There are 100 movies in the list.");
System.out.println("What category are you interested in?");
System.out.println();

[code].....

View Replies View Related

Calling A Method - Return Smallest Value In A Queue

Nov 15, 2014

I've created a getMin method to return the smallest value in a queue. However, I'm having trouble calling the method in my main.

/**
* Main method.
*
* @param args
* the command line arguments; unused here
*/
public static void main(String[] args) {
SimpleReader in = new SimpleReader1L();
SimpleWriter out = new SimpleWriter1L();
Queue<Integer> testQueue = new Queue1L<Integer>();

[Code] .....

View Replies View Related

Calling Multiple Methods Into Main Method

Sep 30, 2014

This current one is to calculate a planes holding pattern. I have to write a method to prompt user to enter speed in knots, then it converts it to km/hr. Another method to calc. pattern width using the speed, another method to calc. pattern length, than a main method which would call and print out the speed in knots, speed in km, pattern width and length.My current problem is on the second method. It works in that I can enter the values and it gives me the correct answers, however it's asking me to enter the speed twice, instead of just once. Anything I try just results in errors and won't compile.

import java.util.Scanner ;
//main method
public class TitleRemoved {
public static void main(String[] args) {
double airSpeedKm = airSpeedOts () ;
System.out.println("That speed is " + airSpeedKm + " km/hr.") ;

[code].....

I want my code to not only work, but be organized and easily readable as well, so I want to avoid bad habits.

View Replies View Related

Swing/AWT/SWT :: Calling Method Does Not Work From JMenuBar

Nov 6, 2014

I have a paint program in Java where I can draw objects. The objects are stored in an arrayList. In the menubar the user can chooce "Back", which means the last item in the arrayList is removed. After that I want the program to loop through the arrayList and draw the remaining items.

My problem is that when I try to do that it will not work from the menu (menuItem2). If I instead add the code to one of the colorpanels (yellowPanel), from where the user can pick colors, it works fine.

menuItem2 uses ActionListener and yellowPanel uses MouseListener.
public class PaintProgram extends JFrame implements ActionListener {

public ArrayList<Draw> shapeList = new ArrayList<>();
int startX, startY, endX, endY, w, h;
private JPanel topPanel;
private JPanel bottomPanel;
private JPanel magentaPanel;
private JPanel greenPanel;
private JPanel bluePanel;
private JPanel blackPanel;

[code]....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved