Classes Are In Same Package But Still Cannot Find Each Other So Won't Compile
Jan 22, 2015
package demoServlet4;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class ListenerTest extends HttpServlet
{
public void doGet(HttpServletRequest request, HttpServletResponse response)
[Code] ....
Above is the code for three classes. class Dog compiles fine but other two classes cannot find Dog.
Following is the classpath and the JAVA_HOME
classpath = .;C:Program FilesApache Software FoundationTomcat 8.0libservlet-api.jar;C:Program FilesApache Software FoundationTomcat 8.0libjsp-api.jar
JAVA_HOME= C:Program FilesJavajdk1.8.0_25bin;
I am using javac -d WEB-INFclasses WEB-INFclassesdemoServlet4ListenerTest.java and javac -d WEB-INFclasses WEB-INFclassesdemoServlet4MyServletContextListener.java to compile the classes.
View Replies
ADVERTISEMENT
Aug 21, 2014
Is there any command to find all the classes inside a package?
E.g. : To find all the properties and methods inside a class String we use "javap java.lang.String" ....
View Replies
View Related
Apr 30, 2014
My working directory is e:ajava. in package p1 i create two classes c1 and c2. net beans creates three files e:ajavap1srcp1, e:ajavap1srcc1, e:ajavap1srcc2. package runs without a hitch. i create another package p2 under e:ajava. i want to use class c1 in p2. pray what on earth should be my import statement in the p2 source code after the first statement 'package p2'. another related querry what should i include in my class path so as to gain access to c1 and c2 in source code of p2.
View Replies
View Related
Mar 28, 2015
I have a folder of classes that I am packaging together. Some classes are being packaged and compiling just fine. My other classes in the same package, however, are saying that they cannot find these classes.
View Replies
View Related
Jan 31, 2015
I'm having problems with this I've code like:
Java Code:
Public Class{
Objects
Constructor(){}
ActionListener Method(){}
Main Function()}
[Code]....
but I cannot declare variables in this method, how can I do this what can be the simplest method?
In addition: I've a marksheet class, a calculator class, & in main class I've 2 buttons one for marksheet & one for calculator, how can I make it so that if user clicks on marksheet button that class should be called & so?
View Replies
View Related
Jan 16, 2015
I have multiple classes in one package and was wondering how to I use one class while in another?
What I mean is I have one sheet with a class and another sheet with another class. (Separate tabs in Eclipse).
View Replies
View Related
Sep 18, 2014
I am having a pretty bad time with this y goto to classes one form labels with a certain image and the other for another images of the same kind but what i have to do is to use a third class in which both classes have to compile and appear in the right place. Ineed an example or something because i don't get it what to do?
View Replies
View Related
Jan 24, 2015
numHitslocs
public class simpleDotCom {
int numHits=0;
int[] locationCells;
public void setlocationCells(int[] locs){
locs=locationCells;
[Code] ....
View Replies
View Related
Apr 24, 2015
I am trying to understand how package(directory structure) and JAR files work interchangeably. From my understanding JAR is a package file format typically used to aggregate many Java classes. Since many classes are usually contained inside a package, I should be able to create a JAR file from a package, and use them interchangeably. A single JAR file is easier to handle then multiple classes and folders.
To test my understanding of the concept, I am working with the following project structure,
/development_directory
____/BookPackage
________Book.java
____BookDemo.java
Book.java contains the following code,
package BookPackage;
public class Book{
private String bookname;
public Book(String str){
bookname = str;
}
public String getBookName(){
return bookname;
}
}
and BookDemo.java contains the following code,
import BookPackage.Book;
class BookDemo{
public static void main(String ... args){
Book b = new Book("Lord of the Rings");
System.out.println(b.getBookName());
}
}
From the development_directory, I used the following commands to compile and run the project,
development_directory/ javac BookDemo.java
development_directory/ java BookDemo
...and it compiles and works as expected.Now, I will try to convert the BookPackage folder(package) into single jar file for portability, and I am using the following command to do that,development_directory/ jar -cf bookpkg.jar BookPackage ...this command generates the bookpkg.jar file.
I am going to remove the BookPackage folder to see if bookpkg.jar file really works as a replacement for the BookPackage directory structure.
After removal of BookPackage folder, the development_directory structure looks like this,
/development_directory
____bookpkg.jar
____BookDemo.java
Now, I tried to use the following commands to see if the program works as before,
// to compile
development_directory/ javac -cp ./bookpkg.jar BookDemo.java
...it compiles without any error - this means the replacement of bookpkg.jar for BookPackage(package) folder structure is working - Am I correct?
// to run
development_directory/ java -cp ./bookpkg.jar BookDemo
...And I hit an error,
Error: Could not find or load main class BookDemo
But the BookDemo class is at default namespace - why it JRE won't be able to find the main method?
And, the way I am trying to replace package folder structure with a single JAR file - am I getting the concept correctly?
View Replies
View Related
Jul 23, 2014
programming altogether and after almost reaching half way in the 'Head first java' book I decided to try and apply some of what I've learnt so far and write my first 'Object orientated' program. As this is pretty much the first program I've ever written, I decided to write a program to ask for two integers and add them both together and then present them to the user (the goal eventually being a basic fully working command line calculator with +,-,* and /. I'm expecting many compile errors but not the following errors below.
I have three .java files contained within a folder and after trying to figure out how to compile all three files (as they use one another) all at once, I came across this ---> javac *.java
so I typed this in the command line whilst in the directory containing the three files assuming *.java is the best approach and then I receive the following errors:
inputOutput.java:10: error: cannot find symb
c.addition() = intIn.nextInteger();
^
symbol: variable c
location: class inputOutput
[Code].....
View Replies
View Related
Dec 2, 2014
I'm doing a course on java but cant seem to get my servlet to compile i keep getting this error im seriously stressed out iv missed my dead line
errors:
C:UsersReignDesktopWebStocks.java:20: package javax.servlet does not exist
import javax.servlet.*;
^
C:UsersReignDesktopWebStocks.java:21: package javax.servlet.http does not exist
import javax.servlet.http.*;
^
C:UsersReignDesktopWebStocks.java:27: cannot find symbol
symbol: class HttpServlet
public class WebStocks extends HttpServlet
I am using textpad to compile and Tomcat as a webserver...
View Replies
View Related
Jul 21, 2014
This is likely a simple matter, but my error is confusing given the line it flags matches a working project I have. I get the following error on line 6 in the Controller:
cannot find symbol
v.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
...........................................^
(carrot at the J)
My view file:
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class View extends JFrame{
private JLabel lbl;
private JButton btn;
[Code] ....
View Replies
View Related
Apr 15, 2015
I decided to code this quiz I took in class about asking the user to input a string and the code is suppose to check for upper case letters. If a upper case letter is found, it should increase a count by one. Once the check is done, it should display the number of uppercase letters. For some reason I am getting this weird compile error stating that symbols can't be found...
Java Code:
import java.util.*;
import java.lang.*;
public class StringCheck{
public static void main(String[] args){
Scanner input = new Scanner(System.in);
System.out.println("please enter a string: " );
String s = input.nextLine();
[Code] ......
View Replies
View Related
Feb 25, 2014
I have a HTML page with an applet inside it.I have the applet class and all other needed classes in a jar file in jre/lib/ext folder (I'm on windows). But when I open the HTML file in a browser it gives me ClassNotFound exception..The HTML file is this:
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<TITLE>
DPI 3270 Printer Session
</TITLE>
</HEAD>
<BODY topmargin="0" leftmargin="0">
<SCRIPT SRC="HODVersion.js" LANGUAGE="JAVASCRIPT"></SCRIPT>
<P>
[code]....
I have this HostOnDemand class in its package in a jar file in jre/lib/ext but it can't be found.Since the applet is way too old, I'm using jre1.4.2 and netscape.
View Replies
View Related
Feb 2, 2014
I am stuck. It seems like I have done everything by the book but I keep getting the same error: cannot find symbol. The error is specifically addressing lines 9, 10, and 11 in the Alien class file. All that is supposed to happen is an output of information for the two types of aliens.
Java Code:
import javax.swing.*;
public class CreateAliens
{
public static void main (String[] args)
{
Martian aMartian = new Martian();
Jupiterian aJupiterian = new Jupiterian();
JOptionPane.showMessageDialog
(null, "
[Code] ....
View Replies
View Related
May 22, 2014
Let's say hypothetically you're making a huge program and use a lot of imports (ex import java.util). If you only need a few specific things from java.util, will it use more memory importing java.util.* compared to only importing lets say java.util.Scanner, java.util.ArrayList, etc. Basically does importing a whole package use more (if any at all) memory than only importing specific package parts?
View Replies
View Related
Sep 3, 2014
my new class had me download eclipse and for some reason it won't let me type anything until I create a document. creating a document creates a package and that lets me create a class which then it will let me start typing code...so wtf is wrong with eclipse and why is it bulling me into having this "package" line in my code when I never had anything like that in other ide's?
View Replies
View Related
Aug 14, 2014
Though have been playing around with my ebook but finding it difficult to get along with the topic PACKAGE&INTERFACES, I find it challenging to write a package file despite the book I currently studying and online tutorial.. so I want a more explanatory format to comprehend the piece cos without knowing it.
View Replies
View Related
Jan 25, 2014
I am trying to make a jar file in intelliJ. My directory that holds all the java classes is C:rafficProjectsrccege. In cege there is a package ui where there is a class GuiMain. And I have imported the GuiMain() in my Main() class.
I have this code lines:
package cege;
import cege.ui.GuiMain;
and when I use the terminal in the intelliJ and write the command:
C: rafficProjectsrccege>javac *.java
I get this message:
Main.java:3: error: package cege.ui does not exist
import cege.ui.GuiMain;
but actually, I have already put this line in my code. what could be the problem?
View Replies
View Related
Oct 16, 2014
This code doesn't recognise the package ( and therefore class ) timetest3, when I try to import it. The package I try to reference/call, follows, and works fine.
import javax.swing.JOptionPane;
import timetest3.TimeTest3;
public class timetest4 {
public static void main(String args[]) {
TimeTest3 time = new TimeTest3();
time.setTime(13,45,52);
[Code] ......
View Replies
View Related
Feb 24, 2014
I've tried to write a package and two classes this way:
<path>/pack/Aclass.java
Java Code: package pack;
public class Aclass<T> {
private T t;
public void set(T t) {
this.t = t;
[code]....
View Replies
View Related
May 20, 2015
I am trying to understand the package and import functions.
The path to access the file " library.book" is
C:UsersKameshDesktopJava SessionJAVAOCA7ooklibrary
and i can see 3 txt files
Book.class
Book.ctxt
Book.java
while compiling i am getting <identifier>expected error.
Here is the code :
package library;
public class Book {
public String isbn;
public void printBook() {}
}
package building;
[Code] .....
The error i get is <identifier>expected.
View Replies
View Related
Feb 11, 2014
i have a program in UNIX directory /home/me/java/src
package bin;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
I have manage to compile it successfully(class file will be in bin directory) using command below: javac -d /home/t_bmf/java/bin HelloWorld.java
My problem now is how would I execute the class in bin directory in UNIX? I already tried different ways on how to execute it as suggested in my internet research The one I tried is this:
java $CLASSPATH:.:bin/HelloWorld
but I got this error message:
Exception in thread "main" java.lang.NoClassDefFoundError: :/:bin/HelloWorld
Caused by: java.lang.ClassNotFoundException: :.:bin.HelloWorld
[code]....
View Replies
View Related
Nov 12, 2014
Source packages
1.First package : CarDealer.java (JFrame form)
2. Second package : Vehicle.java (JFrame form)
- The user runs CarDealer JFrame in which appears a JTexField in which he types in some characters (pretending he types some data about selling licence).
- The user clicks on the JButton "Save" that stores the characters typed in inside a String variable called strLicence.
- The user clicks on the JButton "Open 'Vehicle Form'" that opens the Vehicle JFrame.
- Finally, in the Vehicle JFrame I want to write a code that can see/use the value of the String variable called strLicence.
In other words, for example, I want to store the value of strLicence in a new variable declared in the Vehicle class.
(Actually I'm working with a long and elaborate project for the dissertation of my bachelor's degree, so, for cutting to the chase, I simplified it by creating an essential JFrame project.)
I used netbeans
1. CarDealer.java
package Firstpackage;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.JFrame;
[code]....
I also attach the netbeans project in a zip file ....
View Replies
View Related
Apr 16, 2014
I have created an application that I wish for people to be able to run from command line, like so:
java myApp [filename]
Problem is my application uses functions from 3 .Jar files.
Here is how my folder(Assume it is called MyApplication) currently looks:
Application(folder)(contains .class files + source code)
jar1.jar
jar2.jar
jar3.jar
Manifest.txt
I understand I need add some information to the Manifest.txt file but I am struggling in adding stuff to it in the correct format.
Assuming the above folder is called my MyApplication, what I need to put in the Manifest and how to build it all as a Jar File.
View Replies
View Related
Jan 30, 2014
how access levels work from subclasses and other packages, and I have discovered that a class cannot see it's own protected variable from another package which I thought it would be. I know that it says in the java docs "The protected modifier specifies that the member can only be accessed within its own package (as with package-private) and, in addition, by a subclass of its class in another package." but I thought that would also include it's own class.
Java Code:
package food;
import food.fruit.*;
public class Food {
protected int protecte = 5;
private int privat = 5;
protected void method(){
[Code] ....
View Replies
View Related